33 lines
923 B
TypeScript
33 lines
923 B
TypeScript
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";
|
|
import Partners from "@/components/pageParts/partners";
|
|
import Map from "@/components/pageParts/map";
|
|
import Contact from "@/components/pageParts/contact";
|
|
import Footer from "@/components/nav_foot/footer";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div >
|
|
<Header/>
|
|
<Navbar/>
|
|
<section id="products" className="mt-50 mb-10">
|
|
<Products/>
|
|
</section>
|
|
<Texnika/>
|
|
<Offer/>
|
|
<Faq/>
|
|
<Partners/>
|
|
<Map/>
|
|
<section id="contact" className="my-20" >
|
|
<Contact/>
|
|
</section>
|
|
<Footer/>
|
|
</div>
|
|
);
|
|
}
|