product filter part

This commit is contained in:
Davron Chetin
2025-10-04 14:13:00 +05:00
parent 23eea253d2
commit 89af4173d8
4 changed files with 50 additions and 9 deletions

View File

@@ -1,8 +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 text-3xl ' >{text}</div>
<div className='text-primary md:text-[45px] text-[25px] w-full text-center font-bold '><Text txt={text} /></div>
)
}