Update src/app/page.tsx

This commit is contained in:
2026-03-01 20:03:11 +00:00
parent 90d2031915
commit 4bfbb1bea7

View File

@@ -32,7 +32,7 @@ export default function LandingPage() {
navItems={[
{ name: "About", id: "about" },
{ name: "Portfolio", id: "portfolio" },
{ name: "Projects", id: "/projects" },
{ name: "Product", id: "/product" },
{ name: "Team", id: "team" },
{ name: "Contact", id: "contact" }
]}
@@ -57,7 +57,7 @@ export default function LandingPage() {
]}
mediaAnimation="blur-reveal"
buttons={[
{ text: "View Our Work", href: "/projects" },
{ text: "View Our Work", href: "/product" },
{ text: "Start a Project", href: "contact" }
]}
buttonAnimation="slide-up"
@@ -241,7 +241,7 @@ export default function LandingPage() {
title: "Navigate", items: [
{ label: "Home", href: "/" },
{ label: "About", href: "#about" },
{ label: "Projects", href: "/projects" },
{ label: "Product", href: "/product" },
{ label: "Team", href: "#team" }
]
},
@@ -275,4 +275,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}