Update src/app/page.tsx

This commit is contained in:
2026-03-12 18:56:32 +00:00
parent 0413c57d69
commit 3bd278e043

View File

@@ -33,7 +33,8 @@ export default function LandingPage() {
{ name: "Collections", id: "gallery" },
{ name: "About", id: "about" },
{ name: "Reviews", id: "testimonial" },
{ name: "Contact", id: "contact" }
{ name: "Contact", id: "contact" },
{ name: "Legal", id: "/legal" }
]}
brandName="Yarmstyle"
bottomLeftText="Discover Thoughtful Gifts"
@@ -298,6 +299,14 @@ export default function LandingPage() {
{ label: "Returns", href: "#" }
]
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "/legal" },
{ label: "Terms & Conditions", href: "/legal" },
{ label: "License Info", href: "/legal" },
{ label: "Contact Legal", href: "/legal" }
]
},
{
title: "Connect", items: [
{ label: "Instagram", href: "https://instagram.com" },
@@ -312,4 +321,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}