chore: transfer repo

This commit is contained in:
Danijel
2026-01-19 20:21:14 +01:00
commit 7d2fb0c737
213 changed files with 18085 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
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>
);
}