2 Commits

Author SHA1 Message Date
06da19a132 Update src/app/page.tsx 2026-05-12 16:29:13 +00:00
279d79cf7b Merge version_2 into main
Merge version_2 into main
2026-05-12 16:27:29 +00:00

View File

@@ -12,7 +12,7 @@ import ProductCardOne from '@/components/sections/product/ProductCardOne';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import { Briefcase, Phone, Shield, Sparkles, Star, Car, Fuel } from "lucide-react";
import { Briefcase, Phone, Shield, Sparkles, Star, Car, Fuel, Gem } from "lucide-react";
export default function LandingPage() {
return (
@@ -35,6 +35,7 @@ export default function LandingPage() {
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Fleet", id: "products" },
{ name: "Luxurious Cars", id: "luxurious-cars" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
]}
@@ -46,8 +47,7 @@ export default function LandingPage() {
<HeroLogo
logoText="Two Oceans Luxury Travels"
description="Elevate your journey with our premium fleet of exotic and luxury vehicles. Experience unparalleled elegance and performance on the open road."
buttons={[{ text: "Reserve Your Vehicle", href: "#contact" }]
}
buttons={[{ text: "Reserve Your Vehicle", href: "#contact" }]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/luxury-car-parked-scenic-coastal-road_1203-4616.jpg"
imageAlt="luxury rental car scenic road"
@@ -75,7 +75,7 @@ export default function LandingPage() {
useInvertedBackground={false}
features={[
{
title: "Elite Selection", description: "Choose from the world's most prestigious marques.", media: { imageSrc: "http://img.b2bpic.net/free-photo/sports-car-parking-luxury-hotel_1253-653.jpg", imageAlt: "luxury sports car valet" },
title: "Elite Selection", description: "Choose from the world's most prestigious marques.", media: { imageSrc: "http://img.b2bpic.net/free-photo/sports-car-parking-luxury-hotel_1253-653.jpg", imageAlt: "luxury sports car valet" },
items: [
{ icon: Car, text: "Curated supercar collection" },
{ icon: Sparkles, text: "Impeccably maintained vehicles" },
@@ -83,7 +83,7 @@ export default function LandingPage() {
reverse: false,
},
{
title: "Seamless Delivery", description: "Where you need it, when you need it.", media: { imageSrc: "http://img.b2bpic.net/free-photo/luxury-car-interior-details_1157-33597.jpg", imageAlt: "luxury car interior" },
title: "Seamless Delivery", description: "Where you need it, when you need it.", media: { imageSrc: "http://img.b2bpic.net/free-photo/luxury-car-interior-details_1157-33597.jpg", imageAlt: "luxury car interior" },
items: [
{ icon: Fuel, text: "Personalized vehicle hand-over" },
{ icon: Shield, text: "Full premium insurance coverage" },
@@ -91,7 +91,7 @@ export default function LandingPage() {
reverse: true,
},
{
title: "24/7 Concierge", description: "Your driving partner around the clock.", media: { imageSrc: "http://img.b2bpic.net/free-photo/beautiful-coastal-highway-view_1303-15404.jpg", imageAlt: "coastal highway driving" },
title: "24/7 Concierge", description: "Your driving partner around the clock.", media: { imageSrc: "http://img.b2bpic.net/free-photo/beautiful-coastal-highway-view_1303-15404.jpg", imageAlt: "coastal highway driving" },
items: [
{ icon: Phone, text: "Round-the-clock support" },
{ icon: Star, text: "Custom route planning assistance" },
@@ -104,6 +104,24 @@ export default function LandingPage() {
/>
</div>
<div id="luxurious-cars" data-section="luxurious-cars">
<ProductCardOne
animationType="slide-up"
textboxLayout="split"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={true}
title="Luxurious Selection"
description="A curated list of our most exclusive and rare performance vehicles."
tag="Exclusive Access"
tagIcon={Gem}
products={[
{ id: "luxury-1", name: "Titan V12 Hypercar", price: "$4,500/day", imageSrc: "https://img.b2bpic.net/free-photo/luxury-supercar-red-studio_1203-9023.jpg", imageAlt: "red hypercar" },
{ id: "luxury-2", name: "Azure Open-Top Grand Tourer", price: "$3,800/day", imageSrc: "https://img.b2bpic.net/free-photo/convertible-luxury-car-ocean-road_1203-8823.jpg", imageAlt: "blue convertible luxury car" },
{ id: "luxury-3", name: "Midnight Phantom Edition", price: "$5,200/day", imageSrc: "https://img.b2bpic.net/free-photo/luxury-sedan-matte-black_1203-9112.jpg", imageAlt: "matte black luxury sedan" },
]}
/>
</div>
<div id="products" data-section="products">
<ProductCardOne
animationType="slide-up"