This commit is contained in:
hamid zarghami
2025-10-15 15:56:17 +03:30
parent bdb043e6c5
commit 2f2a27b083
7 changed files with 82 additions and 0 deletions
+2
View File
@@ -1,11 +1,13 @@
import { type FC } from 'react'
import Stats from './components/Stats'
import Services from './components/Services'
const Home: FC = () => {
return (
<div className='flex gap-6'>
<div className='flex-1'>
<Stats />
<Services />
</div>
</div>
)