diff --git a/src/app/page.tsx b/src/app/page.tsx new file mode 100644 index 0000000..e81a8d0 --- /dev/null +++ b/src/app/page.tsx @@ -0,0 +1,35 @@ +import HeroSection from "@/components/sections/HeroSection" +import BrandStorySection from "@/components/sections/BrandStorySection" +import FeaturedProductsSection from "@/components/sections/FeaturedProductsSection" +import LimitedEditionDropsSection from "@/components/sections/LimitedEditionDropsSection" +import NewArrivalsSection from "@/components/sections/NewArrivalsSection" +import MostPopularSection from "@/components/sections/MostPopularSection" +import ProductCarouselSection from "@/components/sections/ProductCarouselSection" +import BrandCarouselSection from "@/components/sections/BrandCarouselSection" +import StreetStyleLookbookSection from "@/components/sections/StreetStyleLookbookSection" +import AdvertBannerSection from "@/components/sections/AdvertBannerSection" +import ShopTheLookCTASection from "@/components/sections/ShopTheLookCTASection" +import FamShoutoutsSection from "@/components/sections/FamShoutoutsSection" +import NewsletterSection from "@/components/sections/NewsletterSection" +import ContactSection from "@/components/sections/ContactSection" + +export default function HomePage() { + return ( +
+ + + + + + + + + + + + + + +
+ ) +}