8 Commits

Author SHA1 Message Date
7319dc6c81 Merge version_2 into main
Merge version_2 into main
2026-04-01 07:49:10 +00:00
80dfb12d58 Update src/app/page.tsx 2026-04-01 07:49:04 +00:00
c143d2301d Merge version_1 into main
Merge version_1 into main
2026-04-01 07:48:05 +00:00
e66279006d Merge version_1 into main
Merge version_1 into main
2026-04-01 07:47:43 +00:00
42e5ce8c17 Merge version_1 into main
Merge version_1 into main
2026-04-01 07:47:30 +00:00
535c5bdf0a Merge version_1 into main
Merge version_1 into main
2026-04-01 07:43:29 +00:00
8e433e6de2 Merge version_1 into main
Merge version_1 into main
2026-04-01 07:43:05 +00:00
33306c183b Merge version_1 into main
Merge version_1 into main
2026-04-01 07:42:40 +00:00

View File

@@ -5,7 +5,7 @@ import ReactLenis from "lenis/react";
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
@@ -41,35 +41,20 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroBillboardTestimonial
<HeroSplitKpi
background={{ variant: "gradient-bars" }}
title="New York's Most Reliable Taxi Service"
description="Getting you across NYC safely, comfortably, and on time, 24/7. Trusted by thousands of New Yorkers."
testimonials={[
{ name: "James L.", handle: "@james", testimonial: "Best taxi service in Manhattan, always on time.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/good-looking-business-woman-texting-message-while-walking-street_197531-6925.jpg?_wi=1" },
{ name: "Sarah M.", handle: "@sarah", testimonial: "Very clean cars and professional drivers.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/young-woman-with-hat-sunglasses-city-tour_158595-4288.jpg?_wi=1" },
{ name: "Robert B.", handle: "@rob", testimonial: "The only way I get to the airport now.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/pensive-businessman-standing-warehouse-near-forklift-talking-cellphone_74855-16417.jpg?_wi=1" },
{ name: "Linda K.", handle: "@linda", testimonial: "Excellent service during rainy nights.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/two-caucasian-female-friends-walking-together-city-while-drinking-coffee-talking_291650-1432.jpg?_wi=1" },
{ name: "Mark D.", handle: "@mark", testimonial: "Reliable and professional, every single ride.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/good-looking-business-woman-texting-message-while-walking-street_197531-6925.jpg?_wi=2" },
kpis={[
{ value: "24/7", label: "Availability" },
{ value: "10K+", label: "Happy Riders" },
{ value: "0", label: "Hidden Fees" }
]}
enableKpiAnimation={true}
buttons={[{ text: "Book Now", href: "#contact" }, { text: "Learn More", href: "#about" }]}
imageSrc="http://img.b2bpic.net/free-photo/yellow-taxi-streets-new-york-city-night_23-2150820166.jpg?_wi=1"
imageAlt="NYC Yellow Taxi"
avatars={[
{ src: "http://img.b2bpic.net/free-photo/good-looking-business-woman-texting-message-while-walking-street_197531-6925.jpg", alt: "User 1" },
{ src: "http://img.b2bpic.net/free-photo/young-woman-with-hat-sunglasses-city-tour_158595-4288.jpg", alt: "User 2" },
{ src: "http://img.b2bpic.net/free-photo/pensive-businessman-standing-warehouse-near-forklift-talking-cellphone_74855-16417.jpg", alt: "User 3" },
{ src: "http://img.b2bpic.net/free-photo/two-caucasian-female-friends-walking-together-city-while-drinking-coffee-talking_291650-1432.jpg", alt: "User 4" },
{ src: "http://img.b2bpic.net/free-photo/good-looking-business-woman-texting-message-while-walking-street_197531-6925.jpg", alt: "User 5" },
]}
avatarText="Trusted by 10,000+ New Yorkers"
marqueeItems={[
{ type: "text-icon", text: "24/7 Availability", icon: Clock },
{ type: "text-icon", text: "Safety First", icon: ShieldCheck },
{ type: "text-icon", text: "Airport Transfers", icon: Car },
{ type: "text-icon", text: "Professional Drivers", icon: UserCheck },
{ type: "text-icon", text: "Flat Rates", icon: DollarSign },
]}
imagePosition="right"
/>
</div>