Files
netrunner-landing/app/[lang]/download/page.tsx
T
Трапезников Кирилл Иванович 4b11fec8cc base with cms integrated
2026-04-18 21:16:55 +10:00

14 lines
335 B
TypeScript

import { getDictionary } from "@/lib/dictionaries";
import { DownloadClient } from "./download-client";
export default async function DownloadPage({
params,
}: {
params: Promise<{ lang: string }>;
}) {
const { lang } = await params;
const dict = await getDictionary(lang);
return <DownloadClient dict={dict.download} />;
}