language bug fixing

This commit is contained in:
nabijonovdavronbek619@gmail.com
2025-10-25 16:36:01 +05:00
parent abcccfbf4b
commit f19a20878e
8 changed files with 65 additions and 62 deletions

View File

@@ -0,0 +1,11 @@
import CarType_Header from "@/components/carPageParts/carType_head";
import React, { ReactNode } from "react";
export default function Layout({ children }: { children: ReactNode }) {
return (
<div>
<CarType_Header />
{children}
</div>
);
}

View File

@@ -0,0 +1,13 @@
"use client";
import Title from "@/components/title";
import { useParams } from "next/navigation";
export default function CartType() {
const router = useParams();
return (
<div dir="ltr" className="my-20" >
<Title text="tex-rent" />
</div>
);
}