Update src/app/page.tsx

This commit is contained in:
2026-03-10 04:10:23 +00:00
parent d5c3a54500
commit 64043fa97d

View File

@@ -17,7 +17,7 @@ export default function LandingPage() {
{ name: "Reels", id: "reels" },
{ name: "Insights", id: "insights" },
{ name: "Services", id: "services" },
{ name: "About", id: "about" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "contact" },
];
@@ -221,7 +221,7 @@ export default function LandingPage() {
},
{
title: "Company", items: [
{ label: "About Us", href: "#" },
{ label: "About Us", href: "/about" },
{ label: "Our Team", href: "#" },
{ label: "Careers", href: "#" },
{ label: "Contact", href: "#contact" },
@@ -250,4 +250,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}