diff --git a/src/app/page.tsx b/src/app/page.tsx index 3e9f6e6..fefb28c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,16 +2,15 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactText from '@/components/sections/contact/ContactText'; -import FaqBase from '@/components/sections/faq/FaqBase'; -import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven'; -import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -import HeroBillboard from '@/components/sections/hero/HeroBillboard'; -import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; -import ProductCardFour from '@/components/sections/product/ProductCardFour'; -import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; -import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; +import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel'; +import SplitAbout from '@/components/sections/about/SplitAbout'; +import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven'; +import ProductCardThree from '@/components/sections/product/ProductCardThree'; +import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; +import { Car, Star, MapPin, CheckCircle } from "lucide-react"; export default function LandingPage() { return ( @@ -32,89 +31,74 @@ export default function LandingPage() {
- +
+ +
+
@@ -127,84 +111,13 @@ export default function LandingPage() { features={[ { id: 1, - title: "Request a Ride", - description: "Open the app, enter your destination, and choose your preferred ride type. Get an instant fare estimate.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BKff17coHlcXqmygbowlBlEBUI/an-illustration-of-a-hand-holding-a-smar-1774242855926-911a9587.png?_wi=1", - imageAlt: "Hand holding smartphone with ride request screen", - }, + title: "Request a Ride", description: "Open the app, enter your destination, and choose your preferred ride type. Get an instant fare estimate.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BKff17coHlcXqmygbowlBlEBUI/an-illustration-of-a-hand-holding-a-smar-1774242855926-911a9587.png?_wi=1", imageAlt: "Hand holding smartphone with ride request screen"}, { id: 2, - title: "Enjoy Your Ride", - description: "A nearby driver will accept your request. Track your driver's arrival and enjoy a comfortable journey to your destination.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BKff17coHlcXqmygbowlBlEBUI/an-illustration-of-a-comfortable-interio-1774242855299-fa38a449.png?_wi=1", - imageAlt: "Interior of a modern car during a ride", - }, + title: "Enjoy Your Ride", description: "A nearby driver will accept your request. Track your driver's arrival and enjoy a comfortable journey to your destination.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BKff17coHlcXqmygbowlBlEBUI/an-illustration-of-a-comfortable-interio-1774242855299-fa38a449.png?_wi=1", imageAlt: "Interior of a modern car during a ride"}, { id: 3, - title: "Pay with Ease", - description: "Securely pay through the app using various payment methods. Rate your driver and provide feedback on your experience.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BKff17coHlcXqmygbowlBlEBUI/an-illustration-of-a-secure-mobile-payme-1774242855753-d94bf0a6.png?_wi=1", - imageAlt: "Mobile payment interface on a smartphone", - }, - ]} - title="How It Works: Seamlessly Book Your Ride" - description="Booking a ride with BookMyRide is easy and intuitive. Follow these simple steps for a stress-free experience." - /> - - -
- -
- -
-
-
-
- + -
- -
- -
- -
-
-
diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx new file mode 100644 index 0000000..1eef24c --- /dev/null +++ b/src/app/pricing/page.tsx @@ -0,0 +1,107 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; +import PricingCardThree from '@/components/sections/pricing/PricingCardThree'; +import { Star } from "lucide-react"; + +export default function PricingPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +}