This commit is contained in:
hamid zarghami
2025-03-27 19:35:59 +03:30
parent 2a76161a2f
commit ef64cb9694
9 changed files with 314 additions and 0 deletions
+4
View File
@@ -67,3 +67,7 @@ tbody tr {
backdrop-filter: blur(44px);
}
.dltr {
direction: ltr;
}
+3
View File
@@ -6,6 +6,7 @@ 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 (
@@ -24,6 +25,8 @@ const Home: NextPage = () => {
<Collaboration />
<Footer />
</div>
)
}