product data

This commit is contained in:
Davron Chetin
2025-10-12 00:41:10 +05:00
parent 34fbe9895b
commit 1eb2ad9169
6 changed files with 251 additions and 3 deletions

13
app/[carType]/page.tsx Normal file
View File

@@ -0,0 +1,13 @@
"use client"
import CarType_Header from "@/components/carTypePageParts/carType_head";
import { useParams } from "next/navigation"
export default function CartType() {
const router = useParams();
return (
<div>
<CarType_Header/>
</div>
)
}