Update src/app/page.tsx

This commit is contained in:
2026-03-01 19:39:28 +00:00
parent 05db8a5b08
commit fbc01adf93

View File

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