From d4639fae894be5cd1476262f8c5d0e7102283a5f Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 26 Apr 2026 20:40:44 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index a6c9f27..67276c0 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -12,12 +12,13 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating import ProductCardOne from '@/components/sections/product/ProductCardOne'; import SplitAbout from '@/components/sections/about/SplitAbout'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; +import ButtonElasticEffect from '@/components/button/ButtonElasticEffect/ButtonElasticEffect'; import { Code, Shield, Zap } from "lucide-react"; export default function LandingPage() { return ( document.getElementById('contact')?.scrollIntoView({ behavior: 'smooth' }) }} /> @@ -55,6 +56,7 @@ export default function LandingPage() { mediaAnimation="slide-up" rating={5} ratingText="Verified Tech Solutions" + buttons={[{ text: "Start Project", href: "#contact" }, { text: "View Portfolio", href: "#portfolio" }]} /> @@ -158,7 +160,7 @@ export default function LandingPage() { text="Ready to innovate? Let's discuss your next IT or AI project." buttons={[ { text: "Connect on GitHub", href: "#" }, - { text: "Email Benedict", href: "mailto:email@example.com" } + { text: "Email Benedict", onClick: () => window.location.href = "mailto:email@example.com" } ]} /> @@ -175,4 +177,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file -- 2.49.1