Switch to version 10: modified src/app/page.tsx

This commit is contained in:
2026-05-30 05:15:35 +00:00
parent 427122d127
commit 8a6fae8d5c

View File

@@ -38,11 +38,11 @@ export default function LandingPage() {
{
name: "About Us", id: "/about"},
{
name: "Services", id: "#services"},
name: "Services", id: "/services"},
{
name: "Portfolio", id: "#portfolio"},
name: "Portfolio", id: "/#portfolio"},
{
name: "Testimonials", id: "#testimonials"},
name: "Testimonials", id: "/#testimonials"},
{
name: "Contact", id: "/contact"},
]}
@@ -63,7 +63,7 @@ export default function LandingPage() {
{
text: "Get a Free Consultation", href: "/contact"},
{
text: "View Our Portfolio", href: "#portfolio"},
text: "View Our Portfolio", href: "/#portfolio"},
]}
imageSrc="http://img.b2bpic.net/free-photo/beautiful-modern-plants-deco_23-2149198591.jpg"
imageAlt="Lush green landscaped garden with a modern patio"
@@ -253,13 +253,13 @@ export default function LandingPage() {
{
title: "Services", items: [
{
label: "Design & Planning", href: "#services"},
label: "Design & Planning", href: "/services"},
{
label: "Installation", href: "#services"},
label: "Installation", href: "/services"},
{
label: "Maintenance", href: "#services"},
label: "Maintenance", href: "/services"},
{
label: "Outdoor Living", href: "#portfolio"},
label: "Outdoor Living", href: "/#portfolio"},
],
},
{
@@ -267,11 +267,11 @@ export default function LandingPage() {
{
label: "About Us", href: "/about"},
{
label: "Portfolio", href: "#portfolio"},
label: "Portfolio", href: "/#portfolio"},
{
label: "Testimonials", href: "#testimonials"},
label: "Testimonials", href: "/#testimonials"},
{
label: "FAQ", href: "#faq"},
label: "FAQ", href: "/#faq"},
],
},
{
@@ -290,4 +290,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}