Files
c9cc2c94-b58b-44de-a068-e99…/src/app/page.tsx
2026-05-22 17:47:50 +00:00

117 lines
5.4 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
import LegalSection from '@/components/legal/LegalSection';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import { Shield } from "lucide-react";
export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
defaultTextAnimation="background-highlight"
borderRadius="rounded"
contentWidth="mediumSmall"
sizing="mediumLarge"
background="none"
cardStyle="outline"
primaryButtonStyle="double-inset"
secondaryButtonStyle="solid"
headingFontWeight="extrabold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "Lookbook", id: "/lookbook" },
{ name: "About", id: "/about" },
]}
brandName="PLOTTWEAR"
button={{ text: "Shop", href: "/shop" }}
/>
</div>
<div id="hero" data-section="hero">
<HeroBillboardRotatedCarousel
background={{ variant: "sparkles-gradient" }}
title="WE DON'T FOLLOW TRENDS."
description="WE PLOT THEM. Experience the new standard in underground luxury."
buttons={[{ text: "SHOP DROP", href: "/shop" }, { text: "EXPLORE", href: "/about" }]}
carouselItems={[
{ id: "1", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-teen-party_23-2149239096.jpg", imageAlt: "urban grit cinematic background" },
{ id: "2", imageSrc: "http://img.b2bpic.net/free-photo/man-posing-with-plastic-foil_23-2148864892.jpg", imageAlt: "urban grit cinematic background" },
{ id: "3", imageSrc: "http://img.b2bpic.net/free-photo/person-using-eco-transport-new-york_23-2149219979.jpg", imageAlt: "urban grit cinematic background" },
{ id: "4", imageSrc: "http://img.b2bpic.net/free-photo/young-model-big-sunglasses-is-posing-photographer-photo-studio_613910-13118.jpg", imageAlt: "urban grit cinematic background" },
{ id: "5", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-blonde-woman-white-hoodie-blue-jeans-posing-against-neon-background_89887-1125.jpg", imageAlt: "urban grit cinematic background" },
{ id: "6", imageSrc: "http://img.b2bpic.net/free-photo/photo-wall-texture-pattern_58702-16168.jpg", imageAlt: "urban grit cinematic background" },
]}
/>
</div>
<div id="products" data-section="products">
<ProductCardOne
animationType="slide-up"
textboxLayout="default"
gridVariant="bento-grid"
useInvertedBackground={false}
products={[
{ id: "p1", name: "OG Hoodie", price: "$120", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-blonde-woman-white-hoodie-blue-jeans-posing-against-neon-background_89887-1126.jpg" },
{ id: "p2", name: "Cargo Pants", price: "$150", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-blond-girl-posing-with-loangboard_158595-2841.jpg" },
{ id: "p3", name: "Graphic Tee", price: "$45", imageSrc: "http://img.b2bpic.net/free-photo/young-man-portrait_23-2148830347.jpg" },
{ id: "p4", name: "Accessories Pack", price: "$30", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-woman-with-attitude-white_158595-5501.jpg" },
{ id: "p5", name: "Luxury Bomber", price: "$250", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-woman-listening-music_23-2148773576.jpg" },
{ id: "p6", name: "Future Cap", price: "$35", imageSrc: "http://img.b2bpic.net/free-vector/vintage-label-design-with-lettering-composition-dark_1284-44697.jpg" },
]}
title="Featured Drops"
description="Current season highlights."
/>
</div>
<div id="story" data-section="story">
<TestimonialAboutCard
useInvertedBackground={false}
tag="PHILOSOPHY"
title="Built For The Moved."
description="PLOTTWEAR was created for people who move different."
subdescription="We blend high fashion architecture with raw street culture."
icon={Shield}
imageSrc="http://img.b2bpic.net/free-photo/model-black-eyes-covered-with-black-ribbon_114579-8785.jpg"
mediaAnimation="blur-reveal"
/>
</div>
<div id="legal" data-section="legal">
<LegalSection title="Legal Information" sections={[]} />
</div>
<div id="contact" data-section="contact">
<ContactSplit
useInvertedBackground={false}
background={{ variant: "plain" }}
tag="NEWSLETTER"
title="Join the Underground."
description="Get exclusive early access to every drop."
imageSrc="http://img.b2bpic.net/free-photo/lovely-couple-love-embracing-corridor_8353-7513.jpg"
mediaAnimation="slide-up"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="PLOTTWEAR"
leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "Terms of Use", href: "#" }}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}