This commit is contained in:
Davron Chetin
2025-10-08 11:14:19 +05:00
parent ce0b7e1765
commit 54b7acd143
11 changed files with 1243 additions and 13 deletions

View File

@@ -2,15 +2,21 @@ import Image from "next/image";
import Header from "../components/nav_foot/header";
import Navbar from "@/components/nav_foot/navbar";
import Products from "@/components/pageParts/products";
import Texnika from "@/components/pageParts/texnika";
import Offer from "@/components/pageParts/offer";
import Faq from "@/components/pageParts/faq";
export default function Home() {
return (
<div >
<Header/>
<Navbar/>
<section id="products" className="mt-50">
<section id="products" className="mt-50 mb-10">
<Products/>
</section>
<Texnika/>
<Offer/>
<Faq/>
</div>
);
}