This commit is contained in:
hamid zarghami
2025-03-28 18:19:02 +03:30
parent ef64cb9694
commit fff96e33d2
13 changed files with 186 additions and 148 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ import { FC } from 'react'
const BlogItem: FC = () => {
return (
<div className='flex-1 h-[390px] rounded-4xl overflow-hidden relative'>
<div className='flex-1 w-full min-h-[390px] bg-red-500 rounded-4xl overflow-hidden relative'>
<Image
src='https://picsum.photos/seed/picsum/200/300'
layout='fill'
+1 -1
View File
@@ -15,7 +15,7 @@ const InfoBox: FC<Props> = (props: Props) => {
</div>
<div className='flex-1'>
<h3 className='text-lg'>
<h3 className='xl:text-lg font-bold'>
{props.title}
</h3>
</div>
+1 -1
View File
@@ -8,7 +8,7 @@ type Props = {
const SectionHeader: FC<Props> = (props) => {
return (
<div className='flex justify-between items-center'>
<h2 className='text-2xl'>
<h2 className='xl:text-2xl font-bold'>
{props.title}
</h2>
+3 -3
View File
@@ -7,15 +7,15 @@ type Props = {
const ServiceItem: FC<Props> = (props) => {
return (
<div className='flex-1 bg-white rounded-4xl p-7'>
<div className='flex-1 bg-white rounded-4xl xl:p-7 p-4'>
<div className='flex justify-between'>
<div className='size-[65px] rounded-2xl bg-orange-400'></div>
<div className='xl:size-[65px] size-[50px] rounded-2xl bg-orange-400'></div>
<div className='h-8 bg-primary text-white px-4 rounded-2xl text-sm flex items-center'>
دسته بندی
</div>
</div>
<h3 className='mt-6 text-2xl'>
<h3 className='mt-6 xl:text-2xl font-bold'>
دی منو
</h3>