7 Commits

Author SHA1 Message Date
5d568b2ea9 Merge version_3 into main
Merge version_3 into main
2026-03-05 13:20:12 +00:00
afb41af543 Update src/app/page.tsx 2026-03-05 13:20:02 +00:00
cba16c051b Update src/app/layout.tsx 2026-03-05 13:20:02 +00:00
ba92de53bd Merge version_2 into main
Merge version_2 into main
2026-03-05 13:18:07 +00:00
f0cbb317ff Update src/app/page.tsx 2026-03-05 13:18:03 +00:00
c9fe93672f Update src/app/layout.tsx 2026-03-05 13:18:02 +00:00
9b0b7d4f33 Merge version_1 into main
Merge version_1 into main
2026-03-05 13:15:35 +00:00
2 changed files with 55 additions and 161 deletions

View File

@@ -8,52 +8,36 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
const halant = Halant({ const halant = Halant({
variable: "--font-halant", variable: "--font-halant", subsets: ["latin"],
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"], weight: ["300", "400", "500", "600", "700"],
}); });
const inter = Inter({ const inter = Inter({
variable: "--font-inter", variable: "--font-inter", subsets: ["latin"],
subsets: ["latin"],
}); });
const manrope = Manrope({ const manrope = Manrope({
variable: "--font-manrope", variable: "--font-manrope", subsets: ["latin"],
subsets: ["latin"],
}); });
const dmSans = DM_Sans({ const dmSans = DM_Sans({
variable: "--font-dm-sans", variable: "--font-dm-sans", subsets: ["latin"],
subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Premium Electronics Trusted Since 1987 - Liberty Associates", title: "Premium Electronics Trusted Since 1987 - Liberty Associates", description: "Authorized dealer for Samsung, LG, Panasonic & IFB. Shop 14,000+ genuine products with flexible EMI, instant availability checks, and fastest support in Udaipur.", keywords: "electronics retail Udaipur, Samsung authorized dealer, LG appliances, Panasonic AC, IFB products, electronics EMI, home appliances, authorized retailer", metadataBase: new URL("https://libertyassociates.com"),
description: "Authorized dealer for Samsung, LG, Panasonic & IFB. Shop 14,000+ genuine products with flexible EMI, instant availability checks, and fastest support in Udaipur.",
keywords: "electronics retail Udaipur, Samsung authorized dealer, LG appliances, Panasonic AC, IFB products, electronics EMI, home appliances, authorized retailer",
metadataBase: new URL("https://libertyassociates.com"),
alternates: { alternates: {
canonical: "https://libertyassociates.com", canonical: "https://libertyassociates.com"
}, },
openGraph: { openGraph: {
title: "Liberty Associates - Premium Electronics Since 1987", title: "Liberty Associates - Premium Electronics Since 1987", description: "Authorized dealer for Samsung, LG, Panasonic & IFB. Genuine products, flexible EMI, 24/7 support. Shop now!", url: "https://libertyassociates.com", siteName: "Liberty Associates", type: "website", images: [
description: "Authorized dealer for Samsung, LG, Panasonic & IFB. Genuine products, flexible EMI, 24/7 support. Shop now!",
url: "https://libertyassociates.com",
siteName: "Liberty Associates",
type: "website",
images: [
{ {
url: "http://img.b2bpic.net/free-photo/abstract-blur-shopping-mall_1203-7930.jpg", url: "http://img.b2bpic.net/free-photo/abstract-blur-shopping-mall_1203-7930.jpg", alt: "Liberty Associates Electronics Store"
alt: "Liberty Associates Electronics Store",
}, },
], ],
}, },
twitter: { twitter: {
card: "summary_large_image", card: "summary_large_image", title: "Liberty Associates - Premium Electronics Since 1987", description: "Authorized dealer for Samsung, LG, Panasonic & IFB with flexible EMI and fast support.", images: ["http://img.b2bpic.net/free-photo/abstract-blur-shopping-mall_1203-7930.jpg"],
title: "Liberty Associates - Premium Electronics Since 1987",
description: "Authorized dealer for Samsung, LG, Panasonic & IFB with flexible EMI and fast support.",
images: ["http://img.b2bpic.net/free-photo/abstract-blur-shopping-mall_1203-7930.jpg"],
}, },
robots: { robots: {
index: true, index: true,
@@ -1445,4 +1429,4 @@ export default function RootLayout({
</ServiceWrapper> </ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -28,8 +28,7 @@ export default function HomePage() {
]; ];
const navButton = { const navButton = {
text: "Shop Now", text: "Shop Now", href: "/products"
href: "/products",
}; };
return ( return (
@@ -84,30 +83,22 @@ export default function HomePage() {
<SplitAbout <SplitAbout
title="39 Years of Trust & Excellence" 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." 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" tag="39 Years Trusted Since 1987"
tagAnimation="slide-up" tagAnimation="slide-up"
bulletPoints={[ bulletPoints={[
{ {
title: "Authorized Dealer Status", title: "Authorized Dealer Status", description:
description: "Official partner for Samsung, LG, Panasonic & IFB with full warranty support", icon: CheckCircle,
"Official partner for Samsung, LG, Panasonic & IFB with full warranty support",
icon: CheckCircle,
}, },
{ {
title: "14,000+ Product Range", title: "14,000+ Product Range", description:
description: "Electronics, appliances, and accessories with real-time inventory availability", icon: Package,
"Electronics, appliances, and accessories with real-time inventory availability",
icon: Package,
}, },
{ {
title: "Instant Availability Checks", title: "Instant Availability Checks", description: "Know product stock status in seconds via WhatsApp or in-store verification", icon: Clock,
description: "Know product stock status in seconds via WhatsApp or in-store verification",
icon: Clock,
}, },
{ {
title: "Flexible EMI Options", title: "Flexible EMI Options", description: "Up to 24-month installment plans with zero-interest and minimal documentation", icon: CreditCard,
description: "Up to 24-month installment plans with zero-interest and minimal documentation",
icon: CreditCard,
}, },
]} ]}
buttons={[{ text: "Learn More", href: "/about" }]} buttons={[{ text: "Learn More", href: "/about" }]}
@@ -123,50 +114,26 @@ export default function HomePage() {
<div id="products" data-section="products" className="bg-background"> <div id="products" data-section="products" className="bg-background">
<ProductCardTwo <ProductCardTwo
title="Featured Electronics" title="Featured Electronics - 39 Years Trusted"
description="Premium authorized products from trusted brands. Available for instant delivery with warranty assurance." description="Premium authorized products from trusted brands. Available for instant delivery with warranty assurance."
tag="Best Sellers" tag="Best Sellers"
tagAnimation="slide-up" tagAnimation="slide-up"
products={[ products={[
{ {
id: "samsung-tv-55", id: "samsung-tv-55", brand: "Samsung", name: "Crystal UHD 55-inch Smart TV", price: "₹44,999", rating: 5,
brand: "Samsung", 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"
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", id: "lg-washing-machine", brand: "LG", name: "Fully Automatic Front Load Washer 8kg", price: "₹32,999", rating: 5,
brand: "LG", 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"
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", id: "panasonic-ac-1.5ton", brand: "Panasonic", name: "1.5 Ton Inverter Split AC", price: "₹38,500", rating: 5,
brand: "Panasonic", 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"
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", id: "ifb-oven", brand: "IFB", name: "25L Microwave Oven Convection", price: "₹14,999", rating: 5,
brand: "IFB", 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"
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" gridVariant="three-columns-all-equal-width"
@@ -186,34 +153,19 @@ export default function HomePage() {
tagAnimation="slide-up" tagAnimation="slide-up"
features={[ features={[
{ {
id: "authorized", id: "authorized", title: "Authorized Dealer Guarantee", author: "Verified Partner", description:
title: "Authorized Dealer Guarantee", "Direct authorization from Samsung, LG, Panasonic & IFB ensures genuine products and full manufacturer warranty coverage for all purchases.", tags: ["Warranty", "Genuine"],
author: "Verified Partner", imageSrc: "http://img.b2bpic.net/free-vector/certified-approved-rubber-stamps-seal-set_1017-25321.jpg?_wi=1", imageAlt: "Authorized dealer certificate"
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", id: "emi-flexible", title: "Flexible EMI & Payment Options", author: "Budget Friendly", description:
title: "Flexible EMI & Payment Options", "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"],
author: "Budget Friendly", 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"
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", id: "support", title: "24/7 Customer Support", author: "Always Available", description:
title: "24/7 Customer Support", "One-tap WhatsApp access, instant product queries, warranty claims, and fastest customer support in Udaipur with dedicated service teams.", tags: ["Support", "WhatsApp"],
author: "Always Available", imageSrc: "http://img.b2bpic.net/free-vector/lovely-delivery-truck-with-boxes_23-2147672363.jpg?_wi=1", imageAlt: "Customer support services"
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" animationType="blur-reveal"
@@ -230,58 +182,28 @@ export default function HomePage() {
tagAnimation="slide-up" tagAnimation="slide-up"
testimonials={[ testimonials={[
{ {
id: "1", id: "1", name: "Rajesh Kumar", handle: "Happy Customer", testimonial:
name: "Rajesh Kumar", "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"
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", id: "2", name: "Priya Sharma", handle: "Udaipur Resident", testimonial:
name: "Priya Sharma", "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"
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", id: "3", name: "Vikram Singh", handle: "Tech Enthusiast", testimonial:
name: "Vikram Singh", "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"
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", id: "4", name: "Anjali Patel", handle: "Verified Buyer", testimonial:
name: "Anjali Patel", "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"
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", id: "5", name: "Arjun Desai", handle: "Business Partner", testimonial:
name: "Arjun Desai", "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"
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", id: "6", name: "Meera Joshi", handle: "Long-term Customer", testimonial:
name: "Meera Joshi", "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"
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" animationType="slide-up"
@@ -299,14 +221,7 @@ export default function HomePage() {
tag="Brand Partners" tag="Brand Partners"
tagAnimation="slide-up" tagAnimation="slide-up"
logos={[ logos={[
"http://img.b2bpic.net/free-vector/gradient-mobile-store-logo-design_23-2149688660.jpg", "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"
"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"]} names={["Samsung", "LG", "Panasonic", "IFB", "Sony", "Whirlpool", "Godrej", "Instax"]}
textboxLayout="default" textboxLayout="default"
@@ -339,8 +254,7 @@ export default function HomePage() {
logoText="Liberty Associates" logoText="Liberty Associates"
columns={[ columns={[
{ {
title: "Products", title: "Products", items: [
items: [
{ label: "Samsung Electronics", href: "/products" }, { label: "Samsung Electronics", href: "/products" },
{ label: "LG Appliances", href: "/products" }, { label: "LG Appliances", href: "/products" },
{ label: "Panasonic AC", href: "/products" }, { label: "Panasonic AC", href: "/products" },
@@ -348,8 +262,7 @@ export default function HomePage() {
], ],
}, },
{ {
title: "Company", title: "Company", items: [
items: [
{ label: "About Us", href: "/about" }, { label: "About Us", href: "/about" },
{ label: "Our Heritage", href: "/about" }, { label: "Our Heritage", href: "/about" },
{ label: "Careers", href: "#" }, { label: "Careers", href: "#" },
@@ -357,8 +270,7 @@ export default function HomePage() {
], ],
}, },
{ {
title: "Support", title: "Support", items: [
items: [
{ label: "Contact Us", href: "/contact" }, { label: "Contact Us", href: "/contact" },
{ label: "FAQ", href: "#" }, { label: "FAQ", href: "#" },
{ label: "Warranty", href: "#" }, { label: "Warranty", href: "#" },
@@ -366,8 +278,7 @@ export default function HomePage() {
], ],
}, },
{ {
title: "Quick Links", title: "Quick Links", items: [
items: [
{ label: "Track Order", href: "#" }, { label: "Track Order", href: "#" },
{ label: "EMI Calculator", href: "#" }, { label: "EMI Calculator", href: "#" },
{ label: "Checkout Deals", href: "/products" }, { label: "Checkout Deals", href: "/products" },
@@ -375,8 +286,7 @@ export default function HomePage() {
], ],
}, },
{ {
title: "Legal", title: "Legal", items: [
items: [
{ label: "Privacy Policy", href: "#" }, { label: "Privacy Policy", href: "#" },
{ label: "Terms & Conditions", href: "#" }, { label: "Terms & Conditions", href: "#" },
{ label: "Return Policy", href: "#" }, { label: "Return Policy", href: "#" },
@@ -389,4 +299,4 @@ export default function HomePage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }