landing api

This commit is contained in:
hamid zarghami
2025-04-14 15:31:57 +03:30
parent 15af39fc84
commit 74c47893dd
25 changed files with 3365 additions and 124 deletions
+33
View File
@@ -0,0 +1,33 @@
'use client'
import { NextPage } from 'next'
import HeroSection from './HeroSection'
import DanakSuggestedService from './DanakSuggestedService'
import WhyDanak from './WhyDanak'
import Blog from './Blog'
import Collaboration from './Collaboration'
const Home: NextPage = () => {
return (
<div>
<HeroSection />
<DanakSuggestedService />
<WhyDanak />
{/* <DanakServices /> */}
<Blog />
<Collaboration />
</div>
)
}
export default Home