-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
75 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,78 @@ | ||
# React + Vite | ||
# ALiAS Website Source | ||
|
||
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules. | ||
Here you'll find the source code of [lucknow.asetalias.in](lucknow.asetalias.in). | ||
|
||
Currently, two official plugins are available: | ||
## π Project Overview | ||
|
||
- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh | ||
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh | ||
Within this project, you'll find the following folders and files: | ||
|
||
```bash | ||
. | ||
βββ README.md | ||
βββ index.html | ||
βββ package.json | ||
βββ pnpm-lock.yaml | ||
βββ public | ||
βΒ Β βββ assets | ||
βΒ Β βΒ Β βββ icons | ||
βΒ Β βΒ Β βββ images | ||
βΒ Β βββ data | ||
βΒ Β βββ about.json | ||
βΒ Β βββ alumni.json | ||
βΒ Β βββ events.json | ||
βΒ Β βββ members.json | ||
βΒ Β βββ socials.json | ||
βββ src | ||
βΒ Β βββ App.css | ||
βΒ Β βββ App.jsx | ||
βΒ Β βββ components | ||
βΒ Β βΒ Β βββ AboutUs | ||
βΒ Β βΒ Β βββ Alumni | ||
βΒ Β βΒ Β βββ Community | ||
βΒ Β βΒ Β βββ Contact | ||
βΒ Β βΒ Β βββ Events | ||
βΒ Β βΒ Β βββ Hero | ||
βΒ Β βΒ Β βββ Navbar | ||
βΒ Β βΒ Β βββ Reusables | ||
βΒ Β βΒ Β βββ Team | ||
βΒ Β βββ index.css | ||
βΒ Β βββ main.jsx | ||
βΒ Β βββ pages | ||
βΒ Β βΒ Β βββ Home | ||
βΒ Β βββ variables.css | ||
βββ vite.config.js | ||
``` | ||
|
||
The public/data directory contains various JSON files for adding events, volunteers, and alumni. | ||
|
||
## π οΈ Contribution and Local Development | ||
|
||
To contribute to this project or run it locally, follow these instructions: | ||
|
||
### Installation | ||
|
||
1. Navigate to the project's root directory using your terminal. | ||
|
||
2. Run the following command to install the necessary dependencies: | ||
|
||
```bash | ||
pnpm install | ||
``` | ||
|
||
### Local Development | ||
|
||
1. After installing the dependencies, start the local development server by running: | ||
|
||
```bash | ||
pnpm dev | ||
``` | ||
|
||
This will launch the server, and you can access the site at [`localhost:3000`](https://localhost:3000) in your browser. | ||
|
||
2. Make your desired changes to the project files. | ||
|
||
3. If you want to contribute, please fork the repository, create a branch for your changes, and submit a pull request. | ||
|
||
### Questions or Discussions | ||
|
||
Join our [Discord server](https://discord.gg/jKhDqHBbMy) for any questions, discussions, or further assistance. |