Skip to content

Commit 8e64c64

Browse files
committed
doc: updated ReadMe
1 parent febacaf commit 8e64c64

File tree

1 file changed

+75
-8
lines changed

1 file changed

+75
-8
lines changed

README.md

Lines changed: 75 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,30 +9,97 @@
99
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.
1010
<hr>
1111

12+
## Table of Contents
13+
14+
- [Project Description](#project-description)
15+
- [Project Set Up](#project-set-up)
16+
- [Project Structure](#project-structure)
17+
- [Communication Channels](#communication-channels)
18+
- [Roadmap](#roadmap)
19+
- [License Information](#license-information)
20+
- [Acknowledgments](#acknowledgments)
21+
- [Links to Other Important Files](#links-to-other-important-files)
22+
1223
## Project Description
1324

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.
1534

1635
Figma Design Reference: [Figma Design](https://www.figma.com/file/QZwtseXogSFjLNz64uLwjV/SYT-Website-Redesign-Complete?type=design&node-id=1113%3A7655&t=xSmmgQWxa0Z31bfo-1)
1736

37+
## Project Set Up
38+
Follow these steps to get the project up and running on your local machine:
39+
40+
1. **Clone the repository**
41+
42+
Open your terminal and run the following command:
43+
44+
```bash
45+
git clone https://github.com/SpaceyaTech/SYT-Web-Redesign.git
46+
```
47+
48+
2. **Navigate into the directory**
49+
50+
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+
1875
## Project Structure
1976

2077
The project follows a standard directory structure:
2178

2279
```
2380
.
81+
├── docs
82+
│ ├── CONTRIBUTING.md
83+
│ ├── CODE_OF_CONDUCT.md
2484
├── public
2585
├── src
86+
│ ├── api
2687
│ ├── APP
2788
│ │ ├── components
89+
│ │ ├── pages
90+
│ │ ├── index.js
2891
│ ├── assets
2992
│ │ ├── images
93+
│ ├── context
94+
│ ├── hooks
95+
│ │ ├── Mutations
96+
│ │ ├── Queries
97+
│ │ ├── useAuth.jsx
3098
│ ├── router
99+
│ ├── utilities
31100
│ └── ...
32-
├── ...
33-
├── docs
34-
│ ├── CONTRIBUTING.md
35-
│ ├── CODE_OF_CONDUCT.md
101+
├── main.jsx
102+
├── index.css
36103
├── README.md
37104
└── ...
38105
```
@@ -70,11 +137,11 @@ Please refer to the [Roadmap](https://github.com/SpaceyaTech/SYT-Web-Redesign/wi
70137

71138
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.
72139

73-
## Acknowledgments
140+
<!-- ## Acknowledgments
74141

75142
We would like to acknowledge the following individuals and resources for their contributions and support during the development of this project:
76143

77-
-
144+
- -->
78145

79146
## Contributing
80147

@@ -88,9 +155,9 @@ We follow the [![Contributor Covenant](https://img.shields.io/badge/Contributor%
88155
## Tech Stacks Used for Development:
89156

90157
![React](https://img.shields.io/badge/react-%2320232a.svg?style=for-the-badge&logo=react&logoColor=%2361DAFB)
158+
![TailwindCSS](https://img.shields.io/badge/tailwindcss-%2338B2AC.svg?style=for-the-badge&logo=tailwind-css&logoColor=white)
91159
![Vite](https://img.shields.io/badge/vite-%23646CFF.svg?style=for-the-badge&logo=vite&logoColor=white)
92160
![ESLint](https://img.shields.io/badge/ESLint-4B3263?style=for-the-badge&logo=eslint&logoColor=white)
93-
![TailwindCSS](https://img.shields.io/badge/tailwindcss-%2338B2AC.svg?style=for-the-badge&logo=tailwind-css&logoColor=white)
94161

95162

96163
[//]: # (https://github.com/Ileriayo/markdown-badges)

0 commit comments

Comments
 (0)