You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+75-8Lines changed: 75 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -9,30 +9,97 @@
9
9
Welcome to the SpaceYaTech website redesign project! This Readme provides comprehensive information about the project, including project description, project structure, communication channels, roadmap, license information, acknowledgments, and links to other important files.
-[Links to Other Important Files](#links-to-other-important-files)
22
+
12
23
## Project Description
13
24
14
-
The SpaceYaTech website is being redesigned to enhance its user experience and visual appeal. The new website will be built using React with the Vite library and Tailwind CSS framework. Designers are collaborating through Figma to create the new design, while developers are using GitHub for contribution and monitoring the workflow.
25
+
The SpaceYaTech website is being redesigned to enhance its user experience and visual appeal.
26
+
27
+
The new website will be built using the following tech stack:
28
+
29
+
-**React**: JavaScript library for building user interfaces.
30
+
-**Vite**: build tool that aims to provide a faster and leaner development experience for modern web projects.
31
+
-**Tailwind CSS**: utility-first CSS framework for rapidly building custom user interfaces.
32
+
-**GitHub**: platform for version control and collaboration.
33
+
-**Figma**: web-based vector graphics editor and prototyping tool.
Change your current directory to the project's directory:
51
+
52
+
```bash
53
+
cd SYT-Web-Redesign
54
+
```
55
+
56
+
3. **Install the dependencies**
57
+
58
+
Run the following command:
59
+
60
+
```bash
61
+
npm install
62
+
```
63
+
64
+
4. **Start the development server**
65
+
66
+
Now you can start the development server and begin developing:
67
+
68
+
```bash
69
+
npm run dev
70
+
```
71
+
72
+
The project should now be running at http://localhost:3000 (or another port if 3000 is already in use).
73
+
74
+
18
75
## Project Structure
19
76
20
77
The project follows a standard directory structure:
21
78
22
79
```
23
80
.
81
+
├── docs
82
+
│ ├── CONTRIBUTING.md
83
+
│ ├── CODE_OF_CONDUCT.md
24
84
├── public
25
85
├── src
86
+
│ ├── api
26
87
│ ├── APP
27
88
│ │ ├── components
89
+
│ │ ├── pages
90
+
│ │ ├── index.js
28
91
│ ├── assets
29
92
│ │ ├── images
93
+
│ ├── context
94
+
│ ├── hooks
95
+
│ │ ├── Mutations
96
+
│ │ ├── Queries
97
+
│ │ ├── useAuth.jsx
30
98
│ ├── router
99
+
│ ├── utilities
31
100
│ └── ...
32
-
├── ...
33
-
├── docs
34
-
│ ├── CONTRIBUTING.md
35
-
│ ├── CODE_OF_CONDUCT.md
101
+
├── main.jsx
102
+
├── index.css
36
103
├── README.md
37
104
└── ...
38
105
```
@@ -70,11 +137,11 @@ Please refer to the [Roadmap](https://github.com/SpaceyaTech/SYT-Web-Redesign/wi
70
137
71
138
The SpaceYaTech website redesign project is licensed under the [Apache License](http://www.apache.org/licenses/). For more details, please refer to the [LICENSE](https://github.com/SpaceyaTech/SYT-Web-Redesign/blob/main/LICENSE) file.
72
139
73
-
## Acknowledgments
140
+
<!-- ## Acknowledgments
74
141
75
142
We would like to acknowledge the following individuals and resources for their contributions and support during the development of this project:
76
143
77
-
-
144
+
- -->
78
145
79
146
## Contributing
80
147
@@ -88,9 +155,9 @@ We follow the [![Contributor Covenant](https://img.shields.io/badge/Contributor%
0 commit comments