This commit is contained in:
Davron Chetin
2025-10-08 15:11:25 +05:00
parent 1b3b79c217
commit cdc6633091
11 changed files with 204 additions and 24 deletions

9
components/title.tsx Normal file
View File

@@ -0,0 +1,9 @@
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>
)
}