A modern car showcase web app built with Next.js, Tailwind CSS, and TypeScript.
Users can browse, filter, and wishlist cars with a sleek dark UI.
- π Dark Theme Toggle
- π Filter by brand and fuel type
- π° Sort by price (low to high / high to low)
- β€οΈ Wishlist support
- π± Responsive & mobile-friendly UI
- β‘ Fast & modern design with neon-green glow
- π¨ Built with clean UI using
shadcn/ui
&TailwindCSS
β¨ Live Demo: https://car-bazaar.vercel.app
- Framework: Next.js
- Styling: Tailwind CSS
- Components: shadcn/ui
- Icons: FontAwesome
- Animations: Tailwind transitions
- State Management: useState (React hooks)
// Filtering logic (simplified)
if (brand) cars = cars.filter(car => car.brand.includes(brand));
if (fuel) cars = cars.filter(car => car.fuel === fuel);
if (sort === "asc") cars.sort((a, b) => a.price - b.price);
if (sort === "desc") cars.sort((a, b) => b.price - a.price);