Skip to content

Latest commit

 

History

History
44 lines (35 loc) · 1.24 KB

README.md

File metadata and controls

44 lines (35 loc) · 1.24 KB

The Official React App for Makeathon 007

Getting Started

Follow the steps below to set up and run the project on your local machine.

  1. Fork the repository on GitHub to create your own copy.
  2. Clone the forked repository:
    git clone https://github.com/YOUR_USERNAME/makeathon7-website.git
  3. Navigate to the project directory:
    cd makeathon7-website
  4. Install dependencies
    npm install
    #or
    yarn install
  5. Start the development server
    npm run dev
    #or
    yarn dev

The app will be available at http://localhost:5173. Open it on your browser and see the results

Directory Structure

Page/Component Name Route
Home page src/pages/Home.jsx
About Page src/pages/AboutUs.jsx
Tracks Page src/pages/Tracks.jsx
Sponsors Page src/pages/Sponsors.jsx
Timeline Page src/pages/Timeline.jsx

You can learn more in the Vite documentation.

To learn React, check out the React documentation.