Skip to content

Latest commit

 

History

History
136 lines (113 loc) · 3.07 KB

README.md

File metadata and controls

136 lines (113 loc) · 3.07 KB

ACM BVP Logo

Official ACM BVP Website

GitHub Twitter Follow

Checkout Website

Quick Start 🚀

Start the project locally.

Step 1: Clone the repo

Fork the repository, then clone the repo locally by running command:

git clone https://github.com/dakshkhetan/acm-bvp-website.git

Step 2: Install dependencies

cd into the directory:

cd acm-bvp-website

In the root folder do yarn or npm install (depending upon your package manager):

yarn
# or
npm install

And you're good to go!

yarn start
# or
npm start

Project Structure 📂

📦src
 ┣ 📂assets
 ┃ ┣ 📂acm-logo
 ┃ ┣ 📂blogs
 ┃ ┣ 📂display-pics
 ┃ ┣ 📂dsp-sessions
 ┃ ┣ 📂dsp-speakers
 ┃ ┣ 📂gallery
 ┃ ┣ 📂illustrations
 ┃ ┣ 📂month-art-cover
 ┃ ┣ 📂technology
 ┃ ┣ 📂worskshop-section
 ┣ 📂components
 ┃ ┣ 📂ACM-W
 ┃ ┃ ┣ 📂About
 ┃ ┃ ┣ 📂Accomplishments
 ┃ ┃ ┣ 📂Hero
 ┃ ┃ ┣ 📂RoadAhead
 ┃ ┃ ┗ 📂Vision
 ┃ ┣ 📂Backdrop
 ┃ ┣ 📂Carousel
 ┃ ┣ 📂CodeOfConduct
 ┃ ┣ 📂Contact
 ┃ ┣ 📂DSP
 ┃ ┃ ┣ 📂Hero
 ┃ ┃ ┣ 📂Sessions
 ┃ ┃ ┣ 📂Speakers
 ┃ ┣ 📂Divisions
 ┃ ┣ 📂FAQs
 ┃ ┣ 📂Footer
 ┃ ┣ 📂Header
 ┃ ┣ 📂Hero
 ┃ ┣ 📂LatestTrends
 ┃ ┣ 📂Person
 ┃ ┣ 📂SideDrawer
 ┃ ┣ 📂Team
 ┃ ┣ 📂Timeline
 ┃ ┣ 📂Toggle
 ┃ ┗ 📂Workshops
 ┣ 📂data
 ┃ ┣ 📜accomplishments.data.js
 ┃ ┗ 📜blogs.data.js
 ┃ ┣ 📜faq.data.js
 ┃ ┣ 📜team.data.js
 ┃ ┗ 📜timeline.data.js
 ┃ ┗ 📜workshops.data.js
 ┣ 📂pages
 ┃ ┣ 📂ACM-W
 ┃ ┣ 📂Blogs
 ┃ ┣ 📂Events
 ┃ ┗ 📂Home
 ┣ 📂redux
 ┃ ┣ 📂dark-mode
 ┃ ┃ ┣ 📜dark-mode.action.js
 ┃ ┃ ┣ 📜dark-mode.reducer.js
 ┃ ┃ ┗ 📜dark-mode.types.js
 ┃ ┣ 📜root.reducer.js
 ┃ ┗ 📜store.js
 ┣ 📜App.jsx
 ┣ 📜index.css
 ┗ 📜index.js

Contributing ✌️

After cloning & setting up the local project you can push the changes (fixes, features, etc.) to your GitHub fork and make a pull request.

Pushing the changes

git add .
git commit -m "feature: add XYZ"
git push <YOUR_FORKED_REPO_URL> <YOUR_BRANCH_NAME>

Made with ❤️ by Daksh Khetan.