Init(Coore): add to repo

This commit is contained in:
2026-04-24 16:20:36 +03:30
commit 893cdcb89c
91 changed files with 13751 additions and 0 deletions

20
app/[lang]/page.js Executable file
View 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>
)
}