Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1d7c5df6dc |
@@ -1,4 +1,4 @@
|
||||
"use client"
|
||||
"use client";
|
||||
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import HeroSplitAvatars from '@/components/sections/hero/HeroSplitAvatars';
|
||||
@@ -8,6 +8,7 @@ import ProductCardSeven from '@/components/sections/product/ProductCardSeven';
|
||||
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||
import TestimonialCardNine from '@/components/sections/testimonial/TestimonialCardNine';
|
||||
import ContactInline from '@/components/sections/contact/ContactInline';
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import { Crown, Droplets, Gauge, Sparkles, Star, TrendingUp, Zap } from "lucide-react";
|
||||
@@ -241,6 +242,54 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="productCardTwo" data-section="productCardTwo">
|
||||
<ProductCardTwo
|
||||
title="A10 Featured Selection"
|
||||
description="Explore our most popular A10 variants with customer reviews and ratings."
|
||||
tag="Customer Favorites"
|
||||
tagIcon={Star}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
brand: "AUDI",
|
||||
name: "A10 Standard",
|
||||
price: "$55,000",
|
||||
rating: 5,
|
||||
reviewCount: "2.3k",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766507383197-f10wtv51.jpg",
|
||||
imageAlt: "AUDI A10 Standard",
|
||||
onProductClick: () => console.log("A10 Standard clicked")
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
brand: "AUDI",
|
||||
name: "A10 Sport",
|
||||
price: "$65,000",
|
||||
rating: 5,
|
||||
reviewCount: "1.8k",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766507384431-4qc5pz5y.jpg",
|
||||
imageAlt: "AUDI A10 Sport",
|
||||
onProductClick: () => console.log("A10 Sport clicked")
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
brand: "AUDI",
|
||||
name: "A10 Premium",
|
||||
price: "$75,000",
|
||||
rating: 5,
|
||||
reviewCount: "1.5k",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766507385348-h08ys5lv.jpg",
|
||||
imageAlt: "AUDI A10 Premium",
|
||||
onProductClick: () => console.log("A10 Premium clicked")
|
||||
}
|
||||
]}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground="noInvert"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="AUDI"
|
||||
|
||||
Reference in New Issue
Block a user