Init(Coore): add to repo
This commit is contained in:
20
app/[lang]/page.js
Executable file
20
app/[lang]/page.js
Executable file
@@ -0,0 +1,20 @@
|
||||
|
||||
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: { lang } }) {
|
||||
|
||||
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>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user