Files
moygroup/app/[lang]/sss/page.tsx
T
2026-06-03 16:13:15 +03:00

19 lines
416 B
TypeScript

import { getDictionary, Locale } from "../../dictionaries";
import SSSClient from "./SSSClient";
export const metadata = {
title: "SSS | Moy Group",
};
export default async function SSSPage({
params,
}: {
params: Promise<{ lang: string }>;
}) {
const { lang } = await params;
const locale = lang as Locale;
const dict = await getDictionary(locale);
return <SSSClient lang={locale} dict={dict} />;
}