This commit is contained in:
hamid zarghami
2025-03-29 14:18:37 +03:30
parent 784027544e
commit c6f46d4524
4 changed files with 179 additions and 5 deletions
+2 -4
View File
@@ -1,17 +1,15 @@
import { NextPage } from 'next'
import Header from '@/shared/Header'
import HeroSection from './home/HeroSection'
import DanakSuggestedService from './home/DanakSuggestedService'
import WhyDanak from './home/WhyDanak'
import DanakServices from './home/DanakServices'
import Blog from './home/Blog'
import Collaboration from './home/Collaboration'
import Footer from '@/shared/Footer'
const Home: NextPage = () => {
return (
<div>
<Header />
<HeroSection />
@@ -25,7 +23,7 @@ const Home: NextPage = () => {
<Collaboration />
<Footer />
</div>
)