31 lines
823 B
TypeScript
31 lines
823 B
TypeScript
import { CardSection } from "./CardSection";
|
|
import { CustomerReviews } from "./CustomerReviews";
|
|
import { GiftBoxBuilder } from "./GiftBoxBuilder";
|
|
import HeroCarousel from "./HeroCarousel";
|
|
import { ProductSliderWrapper } from "./ProductSliderWrapper";
|
|
import { WoltDelivery } from "./WoltDelivery";
|
|
|
|
export default function NewHomePage() {
|
|
|
|
return (
|
|
<div className="min-h-screen bg-white">
|
|
{/* Hero Section with Carousel */}
|
|
<HeroCarousel />
|
|
|
|
{/* Card Section */}
|
|
<CardSection />
|
|
|
|
{/* Gift Box Builder Section */}
|
|
<GiftBoxBuilder />
|
|
|
|
{/* Product Slider Section */}
|
|
<ProductSliderWrapper />
|
|
|
|
{/* Customer Reviews Section */}
|
|
<CustomerReviews />
|
|
|
|
{/* Wolt Delivery Section */}
|
|
<WoltDelivery />
|
|
</div>
|
|
);
|
|
}
|