Project Structure
Agora_frontend/
├── public/ # Static files
├── src/ # Source files
│ ├── components/ # React components
│ ├── pages/ # Page components
│ ├── App.jsx # Main app component
│ ├── index.jsx # Entry point
├── index.html # HTML template
├── package.json # Project metadata and dependencies
├── README.md # Project documentation
├── vercel.json # Vercel deployment configuration
├── vite.config.js # Vite configuration
Last updated