Add src/app/cars-for-rent/page.tsx

This commit is contained in:
2026-04-17 00:27:04 +00:00
parent 49ca598970
commit 1b3ae89620

View File

@@ -0,0 +1,26 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import FooterMedia from '@/components/sections/footer/FooterMedia';
export default function CarsForRentPage() {
return (
<ThemeProvider>
<NavbarLayoutFloatingInline navItems={[{name: "Home", id: "/"}, {name: "Cars for Rent", id: "/cars-for-rent"}, {name: "Cars for Sale", id: "/cars-for-sale"}]} brandName="MaintainPro" />
<ProductCardTwo
title="Cars for Rent"
description="Explore our premium fleet available for short and long-term rental."
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
products={[
{ id: "1", brand: "Toyota", name: "Camry", price: "$50/day", rating: 4.8, reviewCount: "120", imageSrc: "https://images.unsplash.com/photo-1621007947382-bb3c3994e3fb" },
{ id: "2", brand: "Honda", name: "CR-V", price: "$70/day", rating: 4.9, reviewCount: "85", imageSrc: "https://images.unsplash.com/photo-1542362567-b07e54256795" }
]}
/>
<FooterMedia logoText="MaintainPro" columns={[]} />
</ThemeProvider>
);
}