Update src/app/page.tsx
This commit is contained in:
236
src/app/page.tsx
236
src/app/page.tsx
@@ -2,16 +2,16 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
|
||||
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
|
||||
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
||||
import TextAbout from '@/components/sections/about/TextAbout';
|
||||
import { Award } from "lucide-react";
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
|
||||
import SplitAbout from '@/components/sections/about/SplitAbout';
|
||||
import { Award, Package, Users, ShieldCheck } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -31,199 +31,135 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "hero"},
|
||||
{
|
||||
name: "About", id: "about"},
|
||||
{
|
||||
name: "Products", id: "products"},
|
||||
{
|
||||
name: "Contact", id: "contact"},
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Products", id: "products" },
|
||||
{ name: "Features", id: "features" },
|
||||
{ name: "Gallery", id: "gallery" },
|
||||
{ name: "Stats", id: "stats" },
|
||||
{ name: "Reviews", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="Neetatrading.com "
|
||||
button={{ text: "Get Started", href: "#contact" }}
|
||||
brandName="Neeta Trading Co."
|
||||
button={{ text: "Contact Us", href: "#contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroOverlay
|
||||
title="Premium Jewellery Packaging Solutions for Modern Jewellery Brands"
|
||||
description="Luxury velvet jewellery boxes, ring boxes, necklace packaging, display sets & custom jewellery packaging manufactured in Surat."
|
||||
buttons={[
|
||||
{
|
||||
text: "View Products", href: "#products"},
|
||||
{
|
||||
text: "Contact on WhatsApp", href: "https://wa.me/9102612591277"},
|
||||
]}
|
||||
<HeroBillboardScroll
|
||||
title="Luxury Jewellery Packaging"
|
||||
description="Premium velvet boxes and custom display solutions crafted for elite jewellery brands in Surat."
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
buttons={[{ text: "Explore Collection", href: "#products" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/white-pearls-necklace-with-different-white-boxes-pastel-paper-background_23-2147874223.jpg"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/view-elegant-luxurious-wedding-stationery-planner-resources_23-2150166808.jpg", alt: "Customer 1"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/halloween-decor-white-table-black-surface_176420-9109.jpg", alt: "Customer 2"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/overhead-view-pearl-necklace-golden-earrings-with-white-boxes-paper-background_23-2147874195.jpg", alt: "Customer 3"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/view-elegant-luxurious-wedding-stationery-planner-resources_23-2150166813.jpg", alt: "Customer 4"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-woman-with-chocolate-box_23-2148383121.jpg", alt: "Customer 5"},
|
||||
]}
|
||||
avatarText="Trusted by 5000+ jewellery businesses"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<TextAbout
|
||||
useInvertedBackground={true}
|
||||
title="Over 20 Years of Crafting Excellence in Jewellery Packaging"
|
||||
tag="Our Legacy"
|
||||
tagIcon={Award}
|
||||
<SplitAbout
|
||||
title="Two Decades of Precision Packaging"
|
||||
description="At Neeta Trading Co., we blend tradition with modern design to provide packaging that reflects the luxury of your jewellery. Based in Surat, we serve premium brands globally."
|
||||
bulletPoints={[
|
||||
{ title: "Expert Craftsmanship", description: "High precision in every stitch and fold.", icon: Award },
|
||||
{ title: "Premium Materials", description: "Only the finest velvet and sustainable materials.", icon: Package },
|
||||
{ title: "Customized Solutions", description: "Personalized branding to match your unique identity.", icon: ShieldCheck },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/display-shiny-luxurious-golden-chain_23-2149635269.jpg"
|
||||
imagePosition="right"
|
||||
textboxLayout="split"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardOne
|
||||
<ProductCardTwo
|
||||
title="Exclusive Product Range"
|
||||
description="Tailored packaging for rings, necklaces, and bangles."
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
textboxLayout="split"
|
||||
products={[
|
||||
{
|
||||
id: "p1", name: "Ring Boxes", price: "From ₹45", imageSrc: "http://img.b2bpic.net/free-photo/jewelry-box_1339-384.jpg"},
|
||||
{
|
||||
id: "p2", name: "Necklace Boxes", price: "From ₹120", imageSrc: "http://img.b2bpic.net/free-photo/display-shiny-luxurious-golden-chain_23-2149635269.jpg"},
|
||||
{
|
||||
id: "p3", name: "Velvet Display Sets", price: "From ₹450", imageSrc: "http://img.b2bpic.net/free-photo/queen-crown-still-life_23-2150409267.jpg"},
|
||||
{
|
||||
id: "p4", name: "Pendant Boxes", price: "From ₹65", imageSrc: "http://img.b2bpic.net/free-photo/valentines-day-still-life-design_23-2149246384.jpg"},
|
||||
{
|
||||
id: "p5", name: "Bangle Boxes", price: "From ₹95", imageSrc: "http://img.b2bpic.net/free-photo/view-elegant-luxurious-wedding-stationery-planner-resources_23-2150166937.jpg"},
|
||||
{
|
||||
id: "p6", name: "Gift Packaging", price: "From ₹30", imageSrc: "http://img.b2bpic.net/free-photo/little-gift-box-with-red-bow-white-background_114579-21277.jpg"},
|
||||
{ id: "p1", brand: "Luxury", name: "Velvet Ring Box", price: "₹45", rating: 5, reviewCount: "120+", imageSrc: "http://img.b2bpic.net/free-photo/jewelry-box_1339-384.jpg" },
|
||||
{ id: "p2", brand: "Premium", name: "Necklace Case", price: "₹120", rating: 5, reviewCount: "85+", imageSrc: "http://img.b2bpic.net/free-photo/display-shiny-luxurious-golden-chain_23-2149635269.jpg" },
|
||||
{ id: "p3", brand: "Elite", name: "Bangle Display", price: "₹450", rating: 4, reviewCount: "200+", imageSrc: "http://img.b2bpic.net/free-photo/queen-crown-still-life_23-2150409267.jpg" }
|
||||
]}
|
||||
title="Our Exclusive Collections"
|
||||
description="Discover our wide array of premium display and packaging solutions tailored for luxury jewellery."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardMedia
|
||||
animationType="slide-up"
|
||||
textboxLayout="split-description"
|
||||
useInvertedBackground={true}
|
||||
<FeatureCardNineteen
|
||||
title="Why Choose Us?"
|
||||
features={[
|
||||
{
|
||||
id: "f1", title: "Premium Velvet Finish", description: "High-quality, soft-touch velvet materials for an elite aesthetic.", tag: "Quality", imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-with-chocolate-box_23-2148383121.jpg"},
|
||||
{
|
||||
id: "f2", title: "Custom Branding", description: "Tailor-made logo embossing to elevate your brand presence.", tag: "Bespoke", imageSrc: "http://img.b2bpic.net/free-photo/hands-holding-closed-red-box_1208-342.jpg"},
|
||||
{
|
||||
id: "f3", title: "Wholesale Pricing", description: "Competitive bulk pricing for retailers and established wholesalers.", tag: "Economy", imageSrc: "http://img.b2bpic.net/free-photo/valentines-day-still-life-design_23-2149246350.jpg"},
|
||||
{ tag: "Fast", title: "Quick Delivery", subtitle: "On-time shipment", description: "Ensuring your business operations never halt.", imageSrc: "http://img.b2bpic.net/free-photo/hands-holding-closed-red-box_1208-342.jpg" },
|
||||
{ tag: "Value", title: "Wholesale Price", subtitle: "Unmatched rates", description: "Economical pricing without sacrificing luxury.", imageSrc: "http://img.b2bpic.net/free-photo/valentines-day-still-life-design_23-2149246350.jpg" }
|
||||
]}
|
||||
title="Why Global Brands Choose Us"
|
||||
description="Experience superior quality and bespoke packaging solutions in the heart of Surat."
|
||||
textboxLayout="split"
|
||||
animationType="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="gallery" data-section="gallery">
|
||||
<FeatureCardMedia
|
||||
animationType="slide-up"
|
||||
textboxLayout="inline-image"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
id: "g1", title: "Velvet Collection", description: "Displaying our latest velvet-wrapped jewellery boxes.", tag: "Portfolio", imageSrc: "http://img.b2bpic.net/free-vector/ornamental-golden-blog-headers-set_23-2147558553.jpg"},
|
||||
{
|
||||
id: "g2", title: "Necklace Cases", description: "Exquisite cases designed for secure and elegant storage.", tag: "Portfolio", imageSrc: "http://img.b2bpic.net/free-photo/young-couple-love-buying-rings-jewelry-store_7502-7581.jpg"},
|
||||
{
|
||||
id: "g3", title: "Display Sets", description: "Stunning counter-top display sets for premium boutiques.", tag: "Portfolio", imageSrc: "http://img.b2bpic.net/free-photo/salesperson-displays-new-selection-beautiful-jewelry-costume-jewelry-counter-shopping-holiday-anniversary-gifts_166373-8866.jpg"},
|
||||
]}
|
||||
title="Luxury Craftsmanship Showcase"
|
||||
description="Visualizing elegance in every box we manufacture."
|
||||
<FeatureCardNineteen
|
||||
title="Craftsmanship Showcase"
|
||||
features={[
|
||||
{ tag: "Portfolio", title: "Luxury Finish", subtitle: "In detail", description: "High-quality velvet texture detail.", imageSrc: "http://img.b2bpic.net/free-photo/view-elegant-luxurious-wedding-stationery-planner-resources_23-2150166937.jpg" }
|
||||
]}
|
||||
textboxLayout="split"
|
||||
animationType="blur-reveal"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="stats" data-section="stats">
|
||||
<MetricCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="bento-grid"
|
||||
useInvertedBackground={true}
|
||||
<MetricCardFourteen
|
||||
title="Our Growth Impact"
|
||||
tag="Achievements"
|
||||
metrics={[
|
||||
{
|
||||
id: "m1", value: "20+", description: "Years of Experience"},
|
||||
{
|
||||
id: "m2", value: "5000+", description: "Satisfied Customers"},
|
||||
{
|
||||
id: "m3", value: "100+", description: "Product Designs"},
|
||||
{
|
||||
id: "m4", value: "1289+", description: "Monthly Searches"},
|
||||
{ id: "m1", value: "20+", description: "Years Experience" },
|
||||
{ id: "m2", value: "5000+", description: "Trusted Clients" },
|
||||
{ id: "m3", value: "100%", description: "Quality Satisfaction" }
|
||||
]}
|
||||
title="Our Reach & Experience"
|
||||
description="Trusted partner for jewellery businesses across India."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTwelve
|
||||
<TestimonialCardSixteen
|
||||
title="Client Success Stories"
|
||||
description="Hear from jewellers who trust our packaging."
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1", name: "Rajesh Mehta", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-point-finger-you_93675-135553.jpg"},
|
||||
{
|
||||
id: "t2", name: "Sonia Shah", imageSrc: "http://img.b2bpic.net/free-photo/latin-brunette-girl-posing-indoor_344912-1456.jpg"},
|
||||
{
|
||||
id: "t3", name: "Vikram Patel", imageSrc: "http://img.b2bpic.net/free-photo/middle-age-handsome-businessman-wearing-glasses-standing-office-looking-side-relax-profile-pose-with-natural-face-with-confident-smile_839833-17650.jpg"},
|
||||
{
|
||||
id: "t4", name: "Anita Desai", imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-loving-woman-doing-heart-symbol-shape-gesture_482257-111490.jpg"},
|
||||
{
|
||||
id: "t5", name: "Rahul Sharma", imageSrc: "http://img.b2bpic.net/free-photo/close-up-confident-corporate-woman-professional-entrepreneur-smiling-cross-arms-chest-smiling-enthusiastic-standing-white-background_1258-85600.jpg"},
|
||||
kpiItems={[
|
||||
{ value: "98%", label: "Retention Rate" },
|
||||
{ value: "5k+", label: "Boxes Shipped" },
|
||||
{ value: "24h", label: "Fast Quote" }
|
||||
]}
|
||||
animationType="slide-up"
|
||||
testimonials={[
|
||||
{ id: "t1", name: "Rajesh Mehta", role: "Owner", company: "Mehta Jewellers", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/young-woman-point-finger-you_93675-135553.jpg" }
|
||||
]}
|
||||
cardTitle="Client Experiences"
|
||||
cardTag="Trusted"
|
||||
cardAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "gradient-bars"}}
|
||||
tag="Contact Us"
|
||||
title="Upgrade Your Jewellery Packaging"
|
||||
description="Get in touch with Neeta Trading Co. for bulk inquiries, custom orders, or wholesale rates."
|
||||
<ContactSplitForm
|
||||
title="Get Your Free Quote"
|
||||
description="Contact us for wholesale pricing and custom orders today."
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Full Name" },
|
||||
{ name: "email", type: "email", placeholder: "Email Address" }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/closeup-computer-laptop-marble-table_53876-139709.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links", items: [
|
||||
{
|
||||
label: "About Us", href: "#about"},
|
||||
{
|
||||
label: "Products", href: "#products"},
|
||||
{
|
||||
label: "Contact", href: "#contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact Details", items: [
|
||||
{
|
||||
label: "Surat, Gujarat", href: "#"},
|
||||
{
|
||||
label: "+91 0261 259 1277", href: "tel:+9102612591277"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
<FooterBaseReveal
|
||||
logoText="Neeta Trading Co."
|
||||
copyrightText="© 2025 Neeta Trading Co. | All Rights Reserved"
|
||||
columns={[
|
||||
{ title: "Navigation", items: [{ label: "Home", href: "#" }, { label: "Products", href: "#products" }] },
|
||||
{ title: "Contact", items: [{ label: "Surat, India", href: "#" }, { label: "+91 0261 259 1277", href: "tel:+9102612591277" }] }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user