import { getDictionary } from "@/lib/dictionaries"; import { SpeedtestClient } from "@/components/sections/SpeedtestClient"; export default async function SpeedtestPage({ params, }: { params: Promise<{ lang: string }>; }) { const { lang } = await params; const dict = await getDictionary(lang); return (
); }