Update src/app/page.tsx

This commit is contained in:
2026-03-19 14:16:33 +00:00
parent 06d0760af9
commit f7007d6b59

View File

@@ -52,7 +52,7 @@ export default function LandingPage() {
tagAnimation="slide-up"
buttons={[
{ text: "Follow on Instagram", href: "https://instagram.com/misaelsphotography" },
{ text: "View Portfolio", href: "#portfolio" }
{ text: "View Portfolio", href: "/portfolio" }
]}
buttonAnimation="slide-up"
speed={40}
@@ -86,7 +86,7 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
buttons={[
{ text: "View My Work", href: "#portfolio" }
{ text: "View My Work", href: "/portfolio" }
]}
buttonAnimation="slide-up"
ariaLabel="About section with photographer bio"
@@ -162,7 +162,7 @@ export default function LandingPage() {
},
{
title: "Quick Links", items: [
{ label: "Portfolio", href: "#portfolio" },
{ label: "Portfolio", href: "/portfolio" },
{ label: "About", href: "#about" },
{ label: "Book Now", href: "#booking" }
]
@@ -181,4 +181,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}