This commit is contained in:
Davron Chetin
2025-10-08 19:09:54 +05:00
parent cdc6633091
commit 9c9d5dbc2c
4 changed files with 104 additions and 0 deletions

View File

@@ -7,6 +7,8 @@ import Offer from "@/components/pageParts/offer";
import Faq from "@/components/pageParts/faq";
import Partners from "@/components/pageParts/partners";
import Map from "@/components/pageParts/map";
import Contact from "@/components/pageParts/contact/contact";
import Footer from "@/components/nav_foot/footer";
export default function Home() {
return (
@@ -21,6 +23,10 @@ export default function Home() {
<Faq/>
<Partners/>
<Map/>
<section id="contact" className="my-20" >
<Contact/>
</section>
<Footer/>
</div>
);
}