feat: add AboutTopInfo and HomePageProducts components; update translations and styles

This commit is contained in:
2025-06-02 16:45:30 +03:30
parent 2f6d022fb9
commit 86dc740dfd
6 changed files with 84 additions and 9 deletions
+5 -3
View File
@@ -1,6 +1,6 @@
// ... existing imports ...
import Header from '@/components/layout/header';
import { t } from '@/locales/translates';
import AboutTopInfo from '@/components/pages/about/TopInfo';
import HomePageProducts from '@/components/pages/home/Products';
async function getData() {
await new Promise((resolve) => setTimeout(resolve, 1000));
@@ -13,6 +13,8 @@ export default async function Home() {
return (
<main className="flex flex-col items-center justify-between">
<Header />
<AboutTopInfo />
<HomePageProducts />
</main>
)
);
}