Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 80dfb12d58 | |||
| c143d2301d | |||
| e66279006d | |||
| 42e5ce8c17 | |||
| 535c5bdf0a | |||
| 8e433e6de2 | |||
| 33306c183b |
@@ -5,7 +5,7 @@ import ReactLenis from "lenis/react";
|
|||||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||||
import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
|
import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
|
||||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
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 NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
||||||
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
||||||
@@ -41,35 +41,20 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboardTestimonial
|
<HeroSplitKpi
|
||||||
background={{ variant: "gradient-bars" }}
|
background={{ variant: "gradient-bars" }}
|
||||||
title="New York's Most Reliable Taxi Service"
|
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."
|
description="Getting you across NYC safely, comfortably, and on time, 24/7. Trusted by thousands of New Yorkers."
|
||||||
testimonials={[
|
kpis={[
|
||||||
{ 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" },
|
{ value: "24/7", label: "Availability" },
|
||||||
{ 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" },
|
{ value: "10K+", label: "Happy Riders" },
|
||||||
{ 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" },
|
{ value: "0", label: "Hidden Fees" }
|
||||||
{ 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" },
|
|
||||||
]}
|
]}
|
||||||
|
enableKpiAnimation={true}
|
||||||
buttons={[{ text: "Book Now", href: "#contact" }, { text: "Learn More", href: "#about" }]}
|
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"
|
imageSrc="http://img.b2bpic.net/free-photo/yellow-taxi-streets-new-york-city-night_23-2150820166.jpg?_wi=1"
|
||||||
imageAlt="NYC Yellow Taxi"
|
imageAlt="NYC Yellow Taxi"
|
||||||
avatars={[
|
imagePosition="right"
|
||||||
{ 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 },
|
|
||||||
]}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user