Update src/app/page.tsx

This commit is contained in:
2026-03-02 01:07:21 +00:00
parent 35017a31bf
commit 95fd86e35b

View File

@@ -36,10 +36,10 @@ export default function LandingPage() {
{ name: "Portfolio", id: "metrics" },
{ name: "About", id: "about" },
{ name: "Projects", id: "/projects" },
{ name: "Contact", id: "contact" }
{ name: "Contact", id: "/contact" }
]}
button={{
text: "Get Started", href: "#contact"
text: "Get Started", href: "/contact"
}}
/>
</div>
@@ -59,7 +59,7 @@ export default function LandingPage() {
tagIcon={Sparkles}
tagAnimation="slide-up"
buttons={[
{ text: "Start Your Project", href: "#contact" },
{ text: "Start Your Project", href: "/contact" },
{ text: "View Our Work", href: "#metrics" }
]}
buttonAnimation="slide-up"
@@ -97,7 +97,7 @@ export default function LandingPage() {
tagAnimation="slide-up"
title="We transform ideas into impactful digital experiences that connect businesses with their audiences and drive measurable results"
buttons={[
{ text: "Learn Our Story", href: "#contact" },
{ text: "Learn Our Story", href: "#about" },
{ text: "Explore Services", href: "#services" }
]}
buttonAnimation="opacity"
@@ -326,4 +326,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}