Update src/app/page.tsx

This commit is contained in:
2026-03-28 09:25:05 +00:00
parent 58ea0baf9b
commit 11b2bc21ae

View File

@@ -30,7 +30,9 @@ export default function LandingPage() {
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "About", id: "about" },
{ name: "Services", id: "services" },
{ name: "Services", id: "/services" },
{ name: "Pricing", id: "/pricing" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
]}
@@ -44,7 +46,7 @@ export default function LandingPage() {
title="Elevate Your Brand with Expert Design"
description="I help growing businesses turn their vision into high-impact digital experiences through custom design and development."
tag="Freelance Design Services"
buttons={[{ text: "View My Work", href: "#services" }]}
buttons={[{ text: "View My Work", href: "/portfolio" }]}
mediaItems={[
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BZHUtJmNFxNxyKqx53sXzvtw1r/a-professional-minimalist-desk-setup-for-1774689729470-66489b79.png?_wi=1", imageAlt: "Freelance desk setup"
@@ -73,9 +75,9 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={false}
features={[
{ title: "Web Design", description: "Custom UI/UX designs that drive engagement.", buttonIcon: Palette },
{ title: "Web Development", description: "High-performance, responsive web applications.", buttonIcon: Code },
{ title: "Brand Identity", description: "Visual identities that communicate your value.", buttonIcon: Award }
{ title: "Web Design", description: "Custom UI/UX designs that drive engagement.", buttonIcon: Palette, buttonHref: "/services" },
{ title: "Web Development", description: "High-performance, responsive web applications.", buttonIcon: Code, buttonHref: "/services" },
{ title: "Brand Identity", description: "Visual identities that communicate your value.", buttonIcon: Award, buttonHref: "/services" }
]}
title="What I Can Do For You"
description="Comprehensive design services tailored to your specific needs."
@@ -121,4 +123,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}