+
+
+
+
+
@@ -202,30 +264,33 @@ export default function LandingPage() {
imageSrc="http://img.b2bpic.net/free-photo/living-room-with-blue-sofa-lamp-with-gold-leaf-it_123827-23880.jpg"
imageAlt="Modern home with smart appliances"
logoText="HomeApply"
- copyrightText="© 2025 HomeApply. All rights reserved."
+ copyrightText={t.copyright}
columns={[
{
- title: "Products", items: [
- { label: "Appliances", href: "#products" },
- { label: "New Arrivals", href: "#products" },
- { label: "Best Sellers", href: "#products" },
- { label: "Sale Items", href: "#products" }
+ title: t.productsMenu,
+ items: [
+ { label: t.appliances, href: "#products" },
+ { label: t.newArrivals, href: "#products" },
+ { label: t.bestSellers, href: "#products" },
+ { label: t.saleItems, href: "#products" }
]
},
{
- title: "Company", items: [
+ title: t.company,
+ items: [
{ label: "About Us", href: "#about" },
- { label: "Blog", href: "/blog" },
- { label: "Careers", href: "/careers" },
- { label: "Sustainability", href: "/sustainability" }
+ { label: t.blog, href: "/blog" },
+ { label: t.careers, href: "/careers" },
+ { label: t.sustainability, href: "/sustainability" }
]
},
{
- title: "Support", items: [
- { label: "Contact Us", href: "/contact" },
- { label: "Help Center", href: "/help" },
+ title: t.support,
+ items: [
+ { label: t.contactUs, href: "/contact" },
+ { label: t.helpCenter, href: "/help" },
{ label: "Warranty", href: "/warranty" },
- { label: "Track Order", href: "/track" }
+ { label: t.trackOrder, href: "/track" }
]
}
]}