language bug fixing
This commit is contained in:
23
app/[lang]/page.tsx
Normal file
23
app/[lang]/page.tsx
Normal file
@@ -0,0 +1,23 @@
|
||||
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 CustomSlider from "@/components/pageParts/newsSlider";
|
||||
|
||||
export default function Home() {
|
||||
return (
|
||||
<div>
|
||||
<section id="products" className="mt-50 mb-10">
|
||||
<Products />
|
||||
</section>
|
||||
<Texnika />
|
||||
<Offer />
|
||||
<CustomSlider/>
|
||||
<Faq />
|
||||
<Partners />
|
||||
<Map />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user