Skip to content

Hari-hara7/Brand-Kiln-Assignment

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

5 Commits
Β 
Β 
Β 
Β 

Repository files navigation

Car Bazaar πŸš—

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.


πŸš€ Features

  • πŸŒ‘ 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

πŸ–ΌοΈ Preview

Preview Screenshot

✨ Live Demo: https://car-bazaar.vercel.app


πŸ› οΈ Tech Stack


🧠 How It Works

// 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);

Releases

No releases published

Packages

No packages published