22 lines
605 B
JavaScript
Executable File
22 lines
605 B
JavaScript
Executable File
|
|
import Hero from '@/components/Hero'
|
|
import Products from '@/components/Products'
|
|
import SmartHome from '@/components/SmartHome'
|
|
import Production from '@/components/Production'
|
|
import About from '@/components/About'
|
|
import BlogPosts from '@/components/BlogPosts'
|
|
|
|
export default async function Home({ params }) {
|
|
const { lang } = await params
|
|
|
|
return (
|
|
<main className="flex flex-col w-full h-full bg-bg-1 scroll-x-hidden" >
|
|
<Hero lang={lang}/>
|
|
<About lang={lang}/>
|
|
<Products lang={lang}/>
|
|
<Production lang={lang}/>
|
|
{/*<BlogPosts lang={lang}/>*/}
|
|
</main>
|
|
)
|
|
}
|