Product Carousels

Explore all product carousel components showcasing different product collections and categories.

8 Carousel Components
Responsive Design
Reusable & Modular

Featured Products

Latest Arrivals

Popular Products

Special Discounts

Trending Now

Recommended For You

Most Viewed

Most Reviewed

Available Carousels

Featured Products

Handpicked selections just for you

import {FeaturedProductsCarousel} from '@/components/carousel'

Latest Arrivals

Fresh products just added

import {LatestProductsCarousel} from '@/components/carousel'

Popular Products

All-time customer favorites

import {PopularProductsCarousel} from '@/components/carousel'

Special Discounts

Limited time offers on selected items

import {DiscountedProductsCarousel} from '@/components/carousel'

Trending Now

What customers are loving right now

import {TrendingProductsCarousel} from '@/components/carousel'

Recommended For You

Personalized recommendations based on your interests

import {RecommendedProductsCarousel} from '@/components/carousel'

Most Viewed

Products everyone is checking out

import {MostViewedProductsCarousel} from '@/components/carousel'

Most Reviewed

Top rated by our community

import {MostReviewedProductsCarousel} from '@/components/carousel'

Usage Example

import { FeaturedProductsCarousel, TrendingProductsCarousel } from '@/components/carousel'

export default function HomePage() {
  return (
    <>
      {/* Use with default title and subtitle */}
      <FeaturedProductsCarousel />
      
      {/* Customize title and subtitle */}
      <TrendingProductsCarousel 
        title="This Week's Trends" 
        subtitle="Updated daily"
      />
      
      {/* Add custom className for styling */}
      <PopularProductsCarousel className="bg-blue-50" />
    </>
  )
}

Each carousel component is fully responsive, includes error handling, loading states, and uses your ProductCard component.

Location: src/components/carousel/