Add src/app/sold-cars/page.tsx

This commit is contained in:
2026-04-17 00:27:05 +00:00
parent f04eb69295
commit 02b5bc9dd6

View File

@@ -0,0 +1,41 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import FooterMedia from '@/components/sections/footer/FooterMedia';
export default function SoldCarsPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Contact", id: "/contact" },
]}
brandName="MaintainPro"
/>
<ProductCardTwo
title="Recently Sold Vehicles"
description="A showcase of cars we've serviced and successfully sold."
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
textboxLayout="default"
products={[
{ id: "1", brand: "Toyota", name: "Camry", price: "$15,000", rating: 5, reviewCount: "12", imageSrc: "http://img.b2bpic.net/free-photo/toyota-camry.jpg" },
{ id: "2", brand: "Honda", name: "Civic", price: "$12,000", rating: 4, reviewCount: "8", imageSrc: "http://img.b2bpic.net/free-photo/honda-civic.jpg" }
]}
/>
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/large-modern-architecture-hall_181624-239.jpg"
logoText="MaintainPro"
columns={[
{ title: "Company", items: [{ label: "Home", href: "/" }] },
]}
/>
</ReactLenis>
</ThemeProvider>
);
}