Skip to content

Commit b125e0a

Browse files
committed
Init program, create navigate-bar and footer.
1 parent f302205 commit b125e0a

27 files changed

+481
-174
lines changed

README.md

+36-46
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,36 @@
1-
# Getting Started with Create React App
2-
3-
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
4-
5-
## Available Scripts
6-
7-
In the project directory, you can run:
8-
9-
### `npm start`
10-
11-
Runs the app in the development mode.\
12-
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
13-
14-
The page will reload if you make edits.\
15-
You will also see any lint errors in the console.
16-
17-
### `npm test`
18-
19-
Launches the test runner in the interactive watch mode.\
20-
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
21-
22-
### `npm run build`
23-
24-
Builds the app for production to the `build` folder.\
25-
It correctly bundles React in production mode and optimizes the build for the best performance.
26-
27-
The build is minified and the filenames include the hashes.\
28-
Your app is ready to be deployed!
29-
30-
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
31-
32-
### `npm run eject`
33-
34-
**Note: this is a one-way operation. Once you `eject`, you can’t go back!**
35-
36-
If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
37-
38-
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
39-
40-
You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
41-
42-
## Learn More
43-
44-
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
45-
46-
To learn React, check out the [React documentation](https://reactjs.org/).
1+
# GDSC Website
2+
3+
## Environment Setup
4+
```bash
5+
npm install
6+
```
7+
8+
## File Structure
9+
```
10+
src
11+
├─ index.tsx
12+
├─ index.css
13+
├─ App.tsx
14+
├─ logo.svg
15+
├─ api
16+
│ ├─ functionName.ts
17+
| └─ ...
18+
├─ components
19+
│ ├─ ComponentName
20+
| | ├─ index.tsx (.jsx)
21+
| | └─ index.scss (.css)
22+
| └─ ...
23+
├─ states (Optional)
24+
│ ├─ ComponentNameState
25+
| | └─ index.tsx (.jsx)
26+
| └─ ...
27+
├─ ui
28+
│ ├─ ElementName
29+
| | ├─ index.tsx (.jsx)
30+
| | └─ index.scss (.css)
31+
| └─ ...
32+
└─ utils
33+
├─ name.ts
34+
└─ ...
35+
```
36+
TypeScript is recommended, but JavaScript is OK.

package-lock.json

+111
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+5
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,14 @@
1010
"@types/node": "^16.18.67",
1111
"@types/react": "^18.2.42",
1212
"@types/react-dom": "^18.2.17",
13+
"axios": "^1.6.2",
1314
"react": "^18.2.0",
1415
"react-dom": "^18.2.0",
16+
"react-router": "^6.20.1",
17+
"react-router-dom": "^6.20.1",
1518
"react-scripts": "5.0.1",
19+
"sass": "^1.69.5",
20+
"scss": "^0.2.4",
1621
"typescript": "^4.9.5",
1722
"web-vitals": "^2.1.4"
1823
},

public/favicon.ico

-3.78 KB
Binary file not shown.

public/img/apple-touch-icon.png

3.23 KB
Loading

public/img/favicon.png

3.8 KB
Loading

public/img/favicon_16.png

542 Bytes
Loading

public/img/favicon_32.png

830 Bytes
Loading

public/img/og_image.jpg

532 KB
Loading

public/index.html

+15-27
Original file line numberDiff line numberDiff line change
@@ -2,42 +2,30 @@
22
<html lang="en">
33
<head>
44
<meta charset="utf-8" />
5-
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
65
<meta name="viewport" content="width=device-width, initial-scale=1" />
7-
<meta name="theme-color" content="#000000" />
6+
<title>National Cheng Kung University | Google Developer Student Clubs</title>
87
<meta
98
name="description"
10-
content="Web site created using create-react-app"
9+
content="Google Developer Student Clubs (GDSC) are community groups for college and university students interested in Google developer technologies. Students from all undergraduate or graduate programs with an interest in growing as a developer are welcome."
1110
/>
12-
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
13-
<!--
14-
manifest.json provides metadata used when your web app is installed on a
15-
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
16-
-->
11+
<link rel="apple-touch-icon" sizes="180x180" href="%PUBLIC_URL%/img/apple-touch-icon.png">
12+
<link rel="icon" type="image/png" href="%PUBLIC_URL%/img/favicon_16.png" sizes="16x16">
13+
<link rel="icon" type="image/png" href="%PUBLIC_URL%/img/favicon_32.png" sizes="32x32">
14+
<link rel="icon" type="image/png" href="%PUBLIC_URL%/img/favicon.png" sizes="192x192">
15+
1716
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
18-
<!--
19-
Notice the use of %PUBLIC_URL% in the tags above.
20-
It will be replaced with the URL of the `public` folder during the build.
21-
Only files inside the `public` folder can be referenced from the HTML.
2217

23-
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
24-
work correctly both with client-side routing and a non-root public URL.
25-
Learn how to configure a non-root public URL by running `npm run build`.
26-
-->
27-
<title>React App</title>
18+
<meta property="og:site_name" content="Google Developer Student Clubs">
19+
<meta property="og:image" content="%PUBLIC_URL%/img/og_image.jpg">
20+
<meta property="og:image:width" content="1080">
21+
<meta property="og:image:height" content="1080">
22+
<meta property="og:title" content="National Cheng Kung University | Google Developer Student Clubs">
23+
<meta property="og:description" content="Google Developer Student Clubs (GDSC) are community groups for college and university students interested in Google developer technologies. Students from all undergraduate or graduate programs with an interest in growing as a developer are welcome.">
24+
<meta property="og:type" content="website">
25+
<!-- <meta property="og:url" content="https://gdsc.community.dev/national-cheng-kung-university/"> -->
2826
</head>
2927
<body>
3028
<noscript>You need to enable JavaScript to run this app.</noscript>
3129
<div id="root"></div>
32-
<!--
33-
This HTML file is a template.
34-
If you open it directly in the browser, you will see an empty page.
35-
36-
You can add webfonts, meta tags, or analytics to this file.
37-
The build step will place the bundled scripts into the <body> tag.
38-
39-
To begin the development, run `npm start` or `yarn start`.
40-
To create a production bundle, use `npm run build` or `yarn build`.
41-
-->
4230
</body>
4331
</html>

public/logo192.png

-5.22 KB
Binary file not shown.

public/logo512.png

-9.44 KB
Binary file not shown.

public/manifest.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
{
2-
"short_name": "React App",
3-
"name": "Create React App Sample",
2+
"short_name": "NCKU GDSC",
3+
"name": "National Cheng Kung University | Google Developer Student Clubs",
44
"icons": [
55
{
6-
"src": "favicon.ico",
7-
"sizes": "64x64 32x32 24x24 16x16",
8-
"type": "image/x-icon"
6+
"src": "img/favicon.png",
7+
"type": "image/png",
8+
"sizes": "192x192"
99
},
1010
{
11-
"src": "logo192.png",
11+
"src": "img/favicon_32.png",
1212
"type": "image/png",
13-
"sizes": "192x192"
13+
"sizes": "32x32"
1414
},
1515
{
16-
"src": "logo512.png",
16+
"src": "img/favicon_16.png",
1717
"type": "image/png",
18-
"sizes": "512x512"
18+
"sizes": "16x16"
1919
}
2020
],
2121
"start_url": ".",

0 commit comments

Comments
 (0)