component table + orders in home

This commit is contained in:
hamid zarghami
2025-10-18 10:38:12 +03:30
parent 2f2a27b083
commit 3b382a973b
18 changed files with 1268 additions and 1 deletions
+2
View File
@@ -1,6 +1,7 @@
import { type FC } from 'react'
import Stats from './components/Stats'
import Services from './components/Services'
import Orders from './components/Orders'
const Home: FC = () => {
return (
@@ -8,6 +9,7 @@ const Home: FC = () => {
<div className='flex-1'>
<Stats />
<Services />
<Orders />
</div>
</div>
)