Welcome to the DTU Official GDSC Website! This repository is designed to help developers collaborate and contribute efficiently.
Follow these steps to set up the project on your local machine.
- Go to the original repository on GitHub.
- Click the Fork button at the top right corner.
- This will create a copy of the repository under your GitHub account.
git clone https://github.com/Ravi3727/GDG_Official_Website.git
cd Frontend
# Replace your-name with your actual name
git checkout -b your-name
npm install
npm run dev
This will start a local development server at http://localhost:5173/
.
├── src/
│ ├── components/ # Reusable components
│ ├── pages/ # Page components
│ ├── styles/ # TailwindCSS styles
│ ├── main.jsx # Entry point
│ ├── App.jsx # Main App component
├── public/ # Static files
├── package.json # Dependencies & scripts
├── tailwind.config.js # TailwindCSS configuration
└── vite.config.js # Vite configuration
- Add new features, fix bugs, or improve documentation.
- Ensure your code follows best practices and is properly formatted.
git add .
git commit -m "Added feature: description"
git push origin your-name
- Go to your forked repository on GitHub.
- Click Compare & pull request.
- Provide a clear title and description of the changes.
- Submit the PR for review.
- Write clean, readable, and well-documented code.
- Use meaningful commit messages.
If you have any questions, feel free to open an issue or discuss in the repository.
Happy Coding! 🚀