Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 07ce3e0f94 | |||
| 3a9c4156a5 | |||
| 4cc4b82f37 |
@@ -12,7 +12,7 @@ import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaA
|
|||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||||
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
|
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() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -45,6 +45,8 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroSplitKpi
|
<HeroSplitKpi
|
||||||
background={{ variant: "gradient-bars" }}
|
background={{ variant: "gradient-bars" }}
|
||||||
|
tag="Limited Time: Free 1-Year Warranty"
|
||||||
|
tagIcon={AlertTriangle}
|
||||||
title="Your Trusted Destination for Certified Cars in Pakistan"
|
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."
|
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={[
|
kpis={[
|
||||||
@@ -55,7 +57,7 @@ export default function LandingPage() {
|
|||||||
enableKpiAnimation={true}
|
enableKpiAnimation={true}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Browse Inventory", href: "#inventory" },
|
{ 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"
|
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"
|
mediaAnimation="slide-up"
|
||||||
@@ -82,14 +84,16 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
<div id="inventory" data-section="inventory">
|
<div id="inventory" data-section="inventory">
|
||||||
<ProductCardFour
|
<ProductCardFour
|
||||||
|
tag="Hot Deals Today"
|
||||||
|
tagIcon={MessageCircle}
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
gridVariant="two-columns-alternating-heights"
|
gridVariant="two-columns-alternating-heights"
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
products={[
|
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: "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: "Inspected", imageSrc: "http://img.b2bpic.net/free-photo/off-road-car-wilderness_23-2151483027.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: "Brand New", imageSrc: "http://img.b2bpic.net/free-photo/wooden-interior-luxury-car_114579-4011.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"
|
title="Recently Inspected Cars"
|
||||||
description="Premium imported and local stock. Book your inspection online today."
|
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."
|
description="Our experts are ready to assist you. Call us or visit our showroom today."
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Call Now", href: "tel:+923000000000" },
|
{ 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"
|
className="px-4 py-16"
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user