A fully responsive, modern, and dynamic website for Midnapore Medical College's annual fest Impulse 2K25, built using:
- βοΈ React + Vite
- π¨ Tailwind CSS v4
- π₯ 3D & video background elements
- π¬ Animated transitions with Framer Motion
- π Dark/light theme support
- π§ React Router SPA routing
- βοΈ Deployed on Vercel
βββ public/ # Public assets βββ src/ β βββ assets/ # All images/videos/logos β βββ components/ # Reusable components (Navbar, Footer, Loader, etc.) β βββ data/ # Static JSON data (sponsor logos, members) β βββ pages/ # Main page components (Home, Events, Schedule, etc.) β βββ App.jsx # Root component with Router β βββ main.jsx # React entry point βββ tailwind.config.js # Tailwind v4 setup βββ index.html # Root HTML βββ vercel.json # SPA rewrite for Vercel routing
π Visit Live Website
- β Fully responsive layout
- β Framer Motion phrase animation
- β
Dynamic routing using
react-router-dom - β Background video sections for immersive design
- β Sponsor grid with 3D hover animation
- β Teaser & gallery with video and carousel
- β Modern, accessible UI with Tailwind
- β Deployment-ready for Vercel (with SPA routing support)
git clone https://github.com/your-username/impulse-2k25.git
cd impulse-2k25npm install npm run devApp will be served at http://localhost:5173
Create a vercel.json file in the root:
{
"rewrites": [
{ "source": "/(.*)", "destination": "/" }
]
}This ensures all React routes work even on direct URL entry like /events, /gallery, etc.
| Page | Path | Description |
|---|---|---|
| Home | / |
Hero section with video bg, animated CTA |
| Events | /events |
Day-wise fest event cards |
| Schedule | /schedule |
Timetable of the full fest |
| Sponsors | /sponsors |
Sponsor logos grid with CTA |
| Gallery | /gallery |
Teasers, photos, reels, carousel |
| Members | /members |
Member cards by designation |
| About | /about |
About MMCH & Impulse Fest |
react-router-domβ Routingframer-motionβ Animationstailwindcssβ Utility-first styling@heroicons/reactβ Icons
-
π§ Use
Linkfromreact-router-dominstead of<a>tags for internal routing:import { Link } from "react-router-dom"; <Link to="/events">Explore Events</Link>
-
π Avoid
href="/events"directly β it causes full-page reloads and breaks SPA routing. -
πΉ Use CDN-hosted videos (e.g., Cloudinary) with
preload="auto"to reduce lag and improve performance.
-
Fork the repository
-
Create a new branch for your feature or fix:
git checkout -b feature/your-feature
-
Commit your changes:
git commit -m "β¨ Add new feature" -
Push to your fork:
git push origin feature/your-feature
-
Submit a Pull Request β