From b5a3bea1d9abe458dafaf6d4c8ab41009aa8f493 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 23 May 2026 18:34:10 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 30 +++++++++++++++++++++++++++--- 1 file changed, 27 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index ebbfb08..0c20e6e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,6 +11,7 @@ import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; +import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia'; export default function LandingPage() { return ( @@ -36,6 +37,8 @@ export default function LandingPage() { name: "About", id: "about"}, { name: "Services", id: "features"}, + { + name: "Booking", id: "booking"}, { name: "Contact", id: "contact"}, ]} @@ -69,7 +72,7 @@ export default function LandingPage() { tag="Trusted by Pros" buttons={[ { - text: "Begin Now", href: "#contact"}, + text: "Book Now", href: "#booking"}, ]} imageSrc="http://img.b2bpic.net/free-photo/luxurious-business-environment-used-corporate-culture-industry_482257-125612.jpg" avatars={[ @@ -121,14 +124,17 @@ export default function LandingPage() { { id: "f1", label: "Automation", title: "Smart Workflow Automation", items: [ "Task scheduling", "Priority alerts", "Performance analytics"], + buttons: [{ text: "Book Now", href: "#booking" }] }, { id: "f2", label: "Security", title: "Enterprise Grade Security", items: [ "Data encryption", "Multi-factor auth", "Regular audits"], + buttons: [{ text: "Book Now", href: "#booking" }] }, { id: "f3", label: "Analytics", title: "Comprehensive Data Insights", items: [ "Real-time dashboards", "Custom reports", "Trend analysis"], + buttons: [{ text: "Book Now", href: "#booking" }] }, ]} title="Advanced Features Designed for Growth" @@ -136,6 +142,24 @@ export default function LandingPage() { /> +
+ +
+
); -} +} \ No newline at end of file -- 2.49.1