diff --git a/src/app/page.tsx b/src/app/page.tsx index 0e2626e..4190eb5 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,15 +2,15 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactSplit from '@/components/sections/contact/ContactSplit'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow'; -import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import FooterCard from '@/components/sections/footer/FooterCard'; import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import SplitAbout from '@/components/sections/about/SplitAbout'; import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; -import { BarChart2, Calendar, Globe, Shield, ShieldCheck } from "lucide-react"; +import { BarChart2, Calendar, Globe, Shield, ShieldCheck, Mail, Phone, MapPin } from "lucide-react"; export default function LandingPage() { return ( @@ -31,103 +31,66 @@ export default function LandingPage() {
@@ -140,17 +103,11 @@ export default function LandingPage() { description="Our platform takes the complexity out of scheduling so you can focus on providing exceptional service to your clients." bulletPoints={[ { - title: "Automated Reminders", - description: "Reduce no-shows with automated client notifications.", - }, + title: "Automated Reminders", description: "Reduce no-shows with automated client notifications."}, { - title: "Real-time Sync", - description: "Integrates seamlessly with your existing calendars.", - }, + title: "Real-time Sync", description: "Integrates seamlessly with your existing calendars."}, { - title: "Scalable Infrastructure", - description: "Grows with your business requirements.", - }, + title: "Scalable Infrastructure", description: "Grows with your business requirements."}, ]} imageSrc="http://img.b2bpic.net/free-photo/elderly-businessman-using-laptop_23-2148116312.jpg?_wi=1" imageAlt="Management dashboard interface" @@ -165,19 +122,13 @@ export default function LandingPage() { useInvertedBackground={false} features={[ { - title: "Global Access", - description: "Bookings available from anywhere in the world.", - icon: Globe, + title: "Global Access", description: "Bookings available from anywhere in the world.", icon: Globe, }, { - title: "Data Analytics", - description: "Insights that help you make better decisions.", - icon: BarChart2, + title: "Data Analytics", description: "Insights that help you make better decisions.", icon: BarChart2, }, { - title: "Secure Payments", - description: "Enterprise-grade encryption for every transaction.", - icon: ShieldCheck, + title: "Secure Payments", description: "Enterprise-grade encryption for every transaction.", icon: ShieldCheck, }, ]} title="Everything You Need to Scale" @@ -190,12 +141,7 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} names={[ - "TechCorp", - "InnovateLab", - "GrowthCo", - "StartupXYZ", - "GlobalServe", - ]} + "TechCorp", "InnovateLab", "GrowthCo", "StartupXYZ", "GlobalServe"]} title="Trusted by Industry Leaders" description="Partnering with forward-thinking brands across various industries." /> @@ -206,30 +152,15 @@ export default function LandingPage() { useInvertedBackground={false} testimonials={[ { - id: "1", - name: "Sarah Johnson", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-smiling-woman-with-short-hairstyle-tilt-head-look-happy-wearing-casual-shirt-standing-white_176420-41464.jpg", - }, + id: "1", name: "Sarah Johnson", imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-smiling-woman-with-short-hairstyle-tilt-head-look-happy-wearing-casual-shirt-standing-white_176420-41464.jpg"}, { - id: "2", - name: "Michael Chen", - imageSrc: "http://img.b2bpic.net/free-photo/attractive-businessman-with-crossed-arms_1139-348.jpg", - }, + id: "2", name: "Michael Chen", imageSrc: "http://img.b2bpic.net/free-photo/attractive-businessman-with-crossed-arms_1139-348.jpg"}, { - id: "3", - name: "Emily Rodriguez", - imageSrc: "http://img.b2bpic.net/free-photo/redhead-female-supervisor-dressed-elegant-suit-grey-background_613910-1352.jpg", - }, + id: "3", name: "Emily Rodriguez", imageSrc: "http://img.b2bpic.net/free-photo/redhead-female-supervisor-dressed-elegant-suit-grey-background_613910-1352.jpg"}, { - id: "4", - name: "David Kim", - imageSrc: "http://img.b2bpic.net/free-photo/positive-middle-aged-business-leader-window_1262-5388.jpg", - }, + id: "4", name: "David Kim", imageSrc: "http://img.b2bpic.net/free-photo/positive-middle-aged-business-leader-window_1262-5388.jpg"}, { - id: "5", - name: "Alex Smith", - imageSrc: "http://img.b2bpic.net/free-photo/low-angle-smiley-business-woman_23-2148356286.jpg", - }, + id: "5", name: "Alex Smith", imageSrc: "http://img.b2bpic.net/free-photo/low-angle-smiley-business-woman_23-2148356286.jpg"}, ]} cardTitle="Client Success Stories" cardTag="Testimonials" @@ -238,51 +169,25 @@ export default function LandingPage() {
-