Files
0fa0ee4e-7277-4e6e-9b4a-d08…/src/app/page.tsx
2026-03-05 13:18:03 +00:00

288 lines
16 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import Link from "next/link";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import HeroLogoBillboardSplit from "@/components/sections/hero/HeroLogoBillboardSplit";
import SplitAbout from "@/components/sections/about/SplitAbout";
import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
import FeatureCardTwentyFour from "@/components/sections/feature/FeatureCardTwentyFour";
import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix";
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
import {
CheckCircle,
Package,
Clock,
CreditCard,
MessageSquare,
} from "lucide-react";
export default function HomePage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
{ name: "About", id: "/about" },
{ name: "Support", id: "/contact" },
];
const navButton = {
text: "Shop Now", href: "/products"};
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="background-highlight"
borderRadius="rounded"
contentWidth="smallMedium"
sizing="mediumLarge"
background="noiseDiagonalGradient"
cardStyle="glass-elevated"
primaryButtonStyle="flat"
secondaryButtonStyle="radial-glow"
headingFontWeight="normal"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="Liberty Associates"
navItems={navItems}
button={navButton}
animateOnLoad={true}
className="sticky top-0 z-50 bg-white/90 backdrop-blur-sm"
navItemClassName="text-foreground hover:text-primary-cta transition-colors"
buttonClassName="bg-primary-cta text-white hover:bg-opacity-90 transition-all"
buttonTextClassName="font-semibold"
/>
</div>
<div id="hero" data-section="hero" className="bg-gradient-to-b from-background to-card">
<HeroLogoBillboardSplit
logoText="LIBERTY ASSOCIATES"
description="Premium Electronics Trusted Since 1987. Authorized dealer for Samsung, LG, Panasonic & IFB. Shop 14,000+ products with instant availability checks, flexible EMI, and Udaipur's fastest support."
background={{ variant: "radial-gradient" }}
buttons={[
{ text: "Explore Latest Deals", href: "/products" },
{ text: "Check Availability", href: "#" },
]}
layoutOrder="default"
imageSrc="http://img.b2bpic.net/free-photo/abstract-blur-shopping-mall_1203-7930.jpg?_wi=1"
imageAlt="Premium electronics retail store interior"
mediaAnimation="slide-up"
frameStyle="card"
className="py-20"
containerClassName="max-w-7xl"
logoContainerClassName="mb-12"
descriptionClassName="text-lg md:text-2xl leading-relaxed"
buttonContainerClassName="gap-4 mt-8"
/>
</div>
<div id="about" data-section="about" className="bg-card/50 backdrop-blur-sm">
<SplitAbout
title="39 Years of Trust & Excellence"
description="Liberty Associates has served Udaipur's electronics needs since 1987. As the authorized dealer for Samsung, LG, Panasonic, and IFB, we combine heritage reliability with modern retail excellence."
tag="Our Heritage"
tagAnimation="slide-up"
bulletPoints={[
{
title: "Authorized Dealer Status", description:
"Official partner for Samsung, LG, Panasonic & IFB with full warranty support", icon: CheckCircle,
},
{
title: "14,000+ Product Range", description:
"Electronics, appliances, and accessories with real-time inventory availability", icon: Package,
},
{
title: "Instant Availability Checks", description: "Know product stock status in seconds via WhatsApp or in-store verification", icon: Clock,
},
{
title: "Flexible EMI Options", description: "Up to 24-month installment plans with zero-interest and minimal documentation", icon: CreditCard,
},
]}
buttons={[{ text: "Learn More", href: "/about" }]}
imageSrc="http://img.b2bpic.net/free-photo/abstract-blur-shopping-mall_1203-7930.jpg?_wi=2"
imageAlt="Liberty Associates retail store in Udaipur"
mediaAnimation="opacity"
imagePosition="right"
textboxLayout="default"
useInvertedBackground={true}
buttonAnimation="slide-up"
/>
</div>
<div id="products" data-section="products" className="bg-background">
<ProductCardTwo
title="Featured Electronics - 39 Years Trusted"
description="Premium authorized products from trusted brands. Available for instant delivery with warranty assurance."
tag="Best Sellers"
tagAnimation="slide-up"
products={[
{
id: "samsung-tv-55", brand: "Samsung", name: "Crystal UHD 55-inch Smart TV", price: "₹44,999", rating: 5,
reviewCount: "2.3k", imageSrc: "http://img.b2bpic.net/free-photo/tv-nature-concept_23-2150246085.jpg?_wi=1", imageAlt: "Samsung 55-inch 4K Smart TV"},
{
id: "lg-washing-machine", brand: "LG", name: "Fully Automatic Front Load Washer 8kg", price: "₹32,999", rating: 5,
reviewCount: "1.8k", imageSrc: "http://img.b2bpic.net/free-vector/household-appliances-realistic-composition_1284-65307.jpg?_wi=1", imageAlt: "LG Front Load Washing Machine"},
{
id: "panasonic-ac-1.5ton", brand: "Panasonic", name: "1.5 Ton Inverter Split AC", price: "₹38,500", rating: 5,
reviewCount: "1.5k", imageSrc: "http://img.b2bpic.net/free-photo/tired-attractive-woman-work-home-stretching-arms-relax-after-hard-day_231208-3278.jpg?_wi=1", imageAlt: "Panasonic 1.5 Ton Air Conditioner"},
{
id: "ifb-oven", brand: "IFB", name: "25L Microwave Oven Convection", price: "₹14,999", rating: 5,
reviewCount: "890", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-girl-loading-clothes-into-washing-machine-modern-self-service-laundry_574295-2561.jpg?_wi=1", imageAlt: "IFB Microwave Oven Convection"},
]}
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
buttons={[{ text: "View All Products", href: "/products" }]}
buttonAnimation="slide-up"
/>
</div>
<div id="features" data-section="features" className="bg-background-accent/10">
<FeatureCardTwentyFour
title="Why Choose Liberty Associates"
description="Experience the difference of authorized retail excellence combined with local expertise"
tag="Our Advantages"
tagAnimation="slide-up"
features={[
{
id: "authorized", title: "Authorized Dealer Guarantee", author: "Verified Partner", description:
"Direct authorization from Samsung, LG, Panasonic & IFB ensures genuine products and full manufacturer warranty coverage for all purchases.", tags: ["Warranty", "Genuine"],
imageSrc: "http://img.b2bpic.net/free-vector/certified-approved-rubber-stamps-seal-set_1017-25321.jpg?_wi=1", imageAlt: "Authorized dealer certificate"},
{
id: "emi-flexible", title: "Flexible EMI & Payment Options", author: "Budget Friendly", description:
"Choose from multiple EMI schemes (3, 6, 12, 24 months) with zero-interest options and minimal documentation for easy home appliance purchases.", tags: ["Financing", "Easy Payment"],
imageSrc: "http://img.b2bpic.net/free-photo/woman-working-with-finances-table-laptop-smartphone-money-notepad_1268-17470.jpg?_wi=1", imageAlt: "EMI payment options"},
{
id: "support", title: "24/7 Customer Support", author: "Always Available", description:
"One-tap WhatsApp access, instant product queries, warranty claims, and fastest customer support in Udaipur with dedicated service teams.", tags: ["Support", "WhatsApp"],
imageSrc: "http://img.b2bpic.net/free-vector/lovely-delivery-truck-with-boxes_23-2147672363.jpg?_wi=1", imageAlt: "Customer support services"},
]}
animationType="blur-reveal"
textboxLayout="default"
useInvertedBackground={true}
/>
</div>
<div id="testimonials" data-section="testimonials" className="bg-gradient-to-r from-background via-card to-background">
<TestimonialCardSix
title="Customer Stories"
description="Trusted by thousands of satisfied customers across Udaipur for 39 years"
tag="Testimonials"
tagAnimation="slide-up"
testimonials={[
{
id: "1", name: "Rajesh Kumar", handle: "Happy Customer", testimonial:
"Excellent service! Got my Samsung TV with perfect warranty coverage and flexible EMI. The staff was incredibly helpful.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=1", imageAlt: "Rajesh Kumar"},
{
id: "2", name: "Priya Sharma", handle: "Udaipur Resident", testimonial:
"Best place to buy electronics in Udaipur. Authorized products, genuine warranty, and fastest delivery. Highly recommended!", imageSrc: "http://img.b2bpic.net/free-photo/confident-beautiful-young-businesswoman-looking-camera-head-shot-portrait_1163-4928.jpg", imageAlt: "Priya Sharma"},
{
id: "3", name: "Vikram Singh", handle: "Tech Enthusiast", testimonial:
"39 years in business for a reason. Their product knowledge is exceptional. Got my LG appliances with perfect after-sales support.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=2", imageAlt: "Vikram Singh"},
{
id: "4", name: "Anjali Patel", handle: "Verified Buyer", testimonial:
"The EMI process was seamless. No hidden charges, instant approval, and delivery within 48 hours. Perfect experience!", imageSrc: "http://img.b2bpic.net/free-photo/successful-businesswoman-ready-challenges_1163-4336.jpg", imageAlt: "Anjali Patel"},
{
id: "5", name: "Arjun Desai", handle: "Business Partner", testimonial:
"For bulk B2B orders, their service is unmatched. Competitive pricing, quick quotes, and institutional warranty support.", imageSrc: "http://img.b2bpic.net/free-photo/happy-handsome-guy-showing-call-me-sign_1262-17046.jpg", imageAlt: "Arjun Desai"},
{
id: "6", name: "Meera Joshi", handle: "Long-term Customer", testimonial:
"Shopping at Liberty for decades. They consistently deliver quality, trust, and exceptional service. My family's preferred store!", imageSrc: "http://img.b2bpic.net/free-photo/happy-satisfied-customer-making-ok-gesture_74855-2298.jpg", imageAlt: "Meera Joshi"},
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
speed={40}
topMarqueeDirection="left"
/>
</div>
<div id="social-proof" data-section="social-proof" className="bg-card/40">
<SocialProofOne
title="Authorized By Industry Leaders"
description="Trusted partnership with the world's most recognized electronics brands"
tag="Brand Partners"
tagAnimation="slide-up"
logos={[
"http://img.b2bpic.net/free-vector/gradient-mobile-store-logo-design_23-2149688660.jpg", "http://img.b2bpic.net/free-vector/gradient-sh-logo-template_23-2149494146.jpg", "http://img.b2bpic.net/free-vector/gradient-electronics-logo-templates_23-2148985013.jpg", "http://img.b2bpic.net/free-vector/flat-design-bd-monogram-template_23-2150623938.jpg", "http://img.b2bpic.net/free-vector/flat-design-o-logo-templates-set_23-2148886082.jpg", "http://img.b2bpic.net/free-vector/creative-hurricane-logo-template_23-2149209625.jpg", "http://img.b2bpic.net/free-vector/gradient-monogram-dg-logo-template_23-2150543426.jpg", "http://img.b2bpic.net/free-vector/follow-us-background_23-2148039525.jpg"]}
names={["Samsung", "LG", "Panasonic", "IFB", "Sony", "Whirlpool", "Godrej", "Instax"]}
textboxLayout="default"
useInvertedBackground={true}
speed={40}
showCard={true}
buttons={[{ text: "View All Brands", href: "/products" }]}
/>
</div>
<div id="contact" data-section="contact" className="bg-gradient-to-r from-primary-cta/10 to-background-accent/10">
<ContactCTA
tag="Get in Touch"
tagIcon={MessageSquare}
tagAnimation="slide-up"
title="Ready to Upgrade Your Electronics?"
description="Experience premium service with authorized products and flexible payment options. Visit us today or connect via WhatsApp for instant assistance."
buttons={[
{ text: "Visit Store in Udaipur", href: "/contact" },
{ text: "Contact via WhatsApp", href: "#" },
]}
buttonAnimation="slide-up"
background={{ variant: "radial-gradient" }}
useInvertedBackground={true}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="Liberty Associates"
columns={[
{
title: "Products", items: [
{ label: "Samsung Electronics", href: "/products" },
{ label: "LG Appliances", href: "/products" },
{ label: "Panasonic AC", href: "/products" },
{ label: "IFB Appliances", href: "/products" },
],
},
{
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Our Heritage", href: "/about" },
{ label: "Careers", href: "#" },
{ label: "Blog", href: "#" },
],
},
{
title: "Support", items: [
{ label: "Contact Us", href: "/contact" },
{ label: "FAQ", href: "#" },
{ label: "Warranty", href: "#" },
{ label: "Store Locator", href: "#" },
],
},
{
title: "Quick Links", items: [
{ label: "Track Order", href: "#" },
{ label: "EMI Calculator", href: "#" },
{ label: "Checkout Deals", href: "/products" },
{ label: "Gift Cards", href: "#" },
],
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms & Conditions", href: "#" },
{ label: "Return Policy", href: "#" },
{ label: "Shipping Info", href: "#" },
],
},
]}
copyrightText="© 1987-2025 Liberty Associates PVT LTD | Udaipur's Trusted Electronics Retailer | All Rights Reserved"
/>
</div>
</ThemeProvider>
);
}