Update src/app/page.tsx

This commit is contained in:
2026-06-09 22:50:34 +00:00
parent 11c52158f5
commit fe9a010c0c

View File

@@ -33,11 +33,13 @@ export default function LandingPage() {
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
navItems={[ navItems={[
{ {
name: "Home", id: "#home"}, name: "Home", id: "/"},
{ {
name: "About", id: "#about"}, name: "About", id: "#about"},
{ {
name: "Services", id: "#services"}, name: "Services", id: "#services"},
{
name: "Product", id: "/product/1"},
{ {
name: "Team", id: "#team"}, name: "Team", id: "#team"},
{ {
@@ -253,13 +255,15 @@ export default function LandingPage() {
{ {
title: "Quick Links", items: [ title: "Quick Links", items: [
{ {
label: "Home", href: "#home"}, label: "Home", href: "/"},
{ {
label: "About Us", href: "#about"}, label: "About Us", href: "#about"},
{ {
label: "Services", href: "#services"}, label: "Services", href: "#services"},
{ {
label: "Team", href: "#team"}, label: "Product", href: "/product/1"},
{
label: "Team", href: "#team"}
], ],
}, },
{ {
@@ -293,4 +297,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }