Merge version_3 into main #5

Merged
bender merged 1 commits from version_3 into main 2026-04-21 04:30:25 +00:00

View File

@@ -12,7 +12,7 @@ import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaA
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
import { CreditCard, Shield } from "lucide-react";
import { CreditCard, Shield, MessageCircle, AlertTriangle } from "lucide-react";
export default function LandingPage() {
return (
@@ -45,6 +45,8 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroSplitKpi
background={{ variant: "gradient-bars" }}
tag="Limited Time: Free 1-Year Warranty"
tagIcon={AlertTriangle}
title="Your Trusted Destination for Certified Cars in Pakistan"
description="Drive home with confidence. Every car goes through a 200-point inspection. Transparent pricing, easy financing, and a 7-day money-back guarantee."
kpis={[
@@ -55,7 +57,7 @@ export default function LandingPage() {
enableKpiAnimation={true}
buttons={[
{ text: "Browse Inventory", href: "#inventory" },
{ text: "Get Instant Price", href: "#contact" },
{ text: "Chat on WhatsApp", href: "https://wa.me/923000000000" },
]}
imageSrc="http://img.b2bpic.net/free-photo/solid-asian-man-white-shirt-sunglasses-posed-near-black-mafia-suv-cars_627829-13667.jpg"
mediaAnimation="slide-up"
@@ -82,14 +84,16 @@ export default function LandingPage() {
<div id="inventory" data-section="inventory">
<ProductCardFour
tag="Hot Deals Today"
tagIcon={MessageCircle}
animationType="slide-up"
textboxLayout="split"
gridVariant="two-columns-alternating-heights"
useInvertedBackground={true}
products={[
{ id: "1", name: "Honda Civic Turbo 2022", price: "PKR 7,500,000", variant: "Certified", imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-blonde-sexy-fashion-woman-model-cap-all-black-blue-corset-with-bright-makeup-near-red-city-car_627829-1117.jpg" },
{ id: "2", name: "Toyota Corolla Altis 2023", price: "PKR 6,200,000", variant: "Inspected", imageSrc: "http://img.b2bpic.net/free-photo/off-road-car-wilderness_23-2151483027.jpg" },
{ id: "3", name: "Suzuki Alto VXR 2024", price: "PKR 2,800,000", variant: "Brand New", imageSrc: "http://img.b2bpic.net/free-photo/wooden-interior-luxury-car_114579-4011.jpg" },
{ id: "1", name: "Honda Civic Turbo 2022", price: "PKR 7,500,000", variant: "Limited Stock", imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-blonde-sexy-fashion-woman-model-cap-all-black-blue-corset-with-bright-makeup-near-red-city-car_627829-1117.jpg" },
{ id: "2", name: "Toyota Corolla Altis 2023", price: "PKR 6,200,000", variant: "Hot Deal", imageSrc: "http://img.b2bpic.net/free-photo/off-road-car-wilderness_23-2151483027.jpg" },
{ id: "3", name: "Suzuki Alto VXR 2024", price: "PKR 2,800,000", variant: "In Stock", imageSrc: "http://img.b2bpic.net/free-photo/wooden-interior-luxury-car_114579-4011.jpg" },
]}
title="Recently Inspected Cars"
description="Premium imported and local stock. Book your inspection online today."
@@ -167,7 +171,7 @@ export default function LandingPage() {
description="Our experts are ready to assist you. Call us or visit our showroom today."
buttons={[
{ text: "Call Now", href: "tel:+923000000000" },
{ text: "WhatsApp Support", href: "https://wa.me/923000000000" },
{ text: "Contact via WhatsApp", href: "https://wa.me/923000000000" },
]}
className="px-4 py-16"
/>
@@ -186,4 +190,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}