Files
netrunner-landing/app/[lang]/download/page.tsx
T
2026-04-19 16:05:05 +10:00

15 lines
391 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);
// Добавили передачу lang
return <DownloadClient dict={dict.download} lang={lang} />;
}