Files
4cebbdfc-3d1a-4b6a-8cf9-836…/src/app/page.tsx
2026-04-30 14:46:59 +00:00

132 lines
5.6 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 HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo';
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
import { Briefcase } from "lucide-react";
export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="mediumLarge"
sizing="mediumLargeSizeMediumTitles"
background="none"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="semibold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "hero" },
{ name: "Products", id: "products" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" },
]}
brandName="PK Plastics"
/>
</div>
<div id="hero" data-section="hero">
<HeroCarouselLogo
logoText="PK Plastics"
description="Premium Distributor of Cello household products. Elegance and utility for every home."
buttons={[{ text: "View Collection", href: "#products" }]}
slides={[
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3D55wVjOr9sdm0qnPqQeL6r3pIi/uploaded-1777560408546-9f6aubwd.jpg", imageAlt: "Premium kitchenware collection" },
{ imageSrc: "http://img.b2bpic.net/free-photo/clean-minimalist-kitchen_23-2149100000.jpg", imageAlt: "Storage solutions" }
]}
/>
</div>
<div id="products" data-section="products">
<ProductCardThree
animationType="slide-up"
textboxLayout="split"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
title="Product Collections"
description="Our premium selection of Cello products, designed for durability and style."
products={[
{ id: "1", name: "Kitchen Essentials", price: "Catalog", imageSrc: "http://img.b2bpic.net/free-photo/electric-blender-mixer-juicer-set_140725-7264.jpg" },
{ id: "2", name: "Storage Solutions", price: "Catalog", imageSrc: "http://img.b2bpic.net/free-photo/food-containers-arrangement_23-2149238985.jpg" },
{ id: "3", name: "Dinnerware Sets", price: "Catalog", imageSrc: "http://img.b2bpic.net/free-photo/top-view-tableware-arrangement_23-2148930370.jpg" }
]}
/>
</div>
<div id="about" data-section="about">
<TestimonialAboutCard
tag="About Us"
title="PK Plastics: Excellence in Distribution"
description="Founded on the principles of quality and reliability, PK Plastics brings the renowned Cello brand to every household in Indore."
subdescription="We pride ourselves on an extensive supply chain and superior customer service."
icon={Briefcase}
videoSrc="http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4"
useInvertedBackground={false}
/>
</div>
<div id="metrics" data-section="metrics">
<MetricCardEleven
title="Trusted by Many"
description="Proven results in the industry."
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
metrics={[
{ id: "1", title: "4.9 Rating", value: "4.9 Star Rating", description: "Consistent excellence", imageSrc: "http://img.b2bpic.net/free-photo/rating-concept_23-2148900000.jpg" },
{ id: "2", title: "500+ Retailers", value: "500+ Partners", description: "Building strong networks", imageSrc: "http://img.b2bpic.net/free-photo/business-network_23-2148900000.jpg" }
]}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardOne
title="What Our Partners Say"
description="Feedback from our valued retail partners."
animationType="slide-up"
gridVariant="three-columns-all-equal-width"
textboxLayout="default"
useInvertedBackground={false}
testimonials={[
{ id: "1", name: "Amit Sharma", role: "Retailer", company: "Indore Mart", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/businessman-smiling_23-2148900000.jpg" },
{ id: "2", name: "Priya Gupta", role: "Manager", company: "Home Style", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/woman-smiling_23-2148900000.jpg" }
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactSplit
tag="Contact Us"
title="Partner With Us"
description="Interested in carrying our product line? Let's discuss your requirements."
background={{ variant: "gradient-bars" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/customer-service_23-2148900000.jpg"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="PK Plastics"
leftLink={{ text: "© 2024 PK Plastics" }}
rightLink={{ text: "Privacy Policy" }}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}