carType page over

This commit is contained in:
nabijonovdavronbek619@gmail.com
2025-11-07 20:00:27 +05:00
parent 2207df3b8c
commit 051d9053dc
28 changed files with 774 additions and 336 deletions

View File

@@ -0,0 +1,11 @@
import { TitleType } from "@/types";
import React from "react";
import Text from "./text";
export default function Title({ text }: TitleType) {
return (
<div className="text-primary md:text-[40px] text-[25px] w-full text-center font-bold ">
<Text txt={text} />
</div>
);
}