From 46053c3cfcc1fbf8578a06bdb9705bf226de81f6 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 26 Apr 2026 14:04:35 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 237 ++++++++--------------------------------------- 1 file changed, 37 insertions(+), 200 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 7ab7bf0..2537c64 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -5,11 +5,11 @@ import ReactLenis from "lenis/react"; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FaqBase from '@/components/sections/faq/FaqBase'; import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive'; -import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial'; import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo'; +import PricingCardThree from '@/components/sections/pricing/PricingCardThree'; import ProductCardFour from '@/components/sections/product/ProductCardFour'; import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; import { Car, DollarSign, Headphones } from "lucide-react"; @@ -32,14 +32,11 @@ export default function LandingPage() {
- -
- -
- -
- -
-
@@ -245,15 +105,12 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={true} faqs={[ - { - id: "f1", title: "What are the rental duration options?", content: "We offer flexible rental periods ranging from daily (24 hours) to weekly or monthly rates. Custom long-term packages are available upon request."}, - { - id: "f2", title: "What is your deposit policy?", content: "A refundable security deposit is required for all bookings. The exact amount depends on the vehicle class, and it is released fully upon safe return of the car."}, - { - id: "f3", title: "What are the pickup requirements?", content: "Please bring a valid driver's license (held for at least 2 years), your national ID or passport, and a valid credit/debit card for payment and deposit processing."}, + { id: "f1", title: "Rental Duration", content: "Flexible durations from 24 hours to monthly rentals. Custom long-term arrangements available." }, + { id: "f2", title: "Deposit Policies", content: "A refundable deposit is required based on the vehicle type, fully returned upon safe handover of the car." }, + { id: "f3", title: "Pickup Requirements", content: "Valid driver's license (min 2 years), national ID/passport, and a valid credit/debit card for deposit processing." }, ]} - title="Need Help?" - description="Answers to common questions." + title="Frequently Asked Questions" + description="Everything you need to know about renting with us." faqsAnimation="slide-up" /> @@ -261,47 +118,27 @@ export default function LandingPage() {
); -} \ No newline at end of file +} -- 2.49.1