first commit

This commit is contained in:
mstfyldz
2026-06-03 16:13:15 +03:00
parent a3b76fa65d
commit 716bad9d7c
40 changed files with 2698 additions and 135 deletions
+13
View File
@@ -0,0 +1,13 @@
import { getDictionary, Locale } from "../dictionaries";
import HomeClient from "./HomeClient";
export default async function Page({
params,
}: {
params: Promise<{ lang: Locale }>;
}) {
const { lang } = await params;
const dict = await getDictionary(lang);
return <HomeClient lang={lang} dict={dict.home} />;
}