danak suggested:

This commit is contained in:
hamid zarghami
2025-03-25 19:34:21 +03:30
parent 0c248508bc
commit c3e935cf94
3 changed files with 48 additions and 2 deletions
+1 -1
View File
@@ -37,7 +37,7 @@ textarea::placeholder {
@theme {
--color-primary: black;
--spacing-maxWidth: 1280px;
--spacing-maxWidth: 1100px;
}
tbody tr {
+11 -1
View File
@@ -1,8 +1,18 @@
import { FC } from 'react'
import ServiceItem from '@/components/ServiceItem'
const DanakSuggestedService: FC = () => {
return (
<div>DanakSuggestedService</div>
<div className='max-w-maxWidth mx-auto mt-20'>
<h2 className='text-2xl'>
سرویس های پیشنهادی داناک
</h2>
<div className='mt-14 flex gap-8'>
<ServiceItem />
<ServiceItem />
</div>
</div>
)
}