new cursor, speedtest at another page, remove rubbish

This commit is contained in:
2026-05-11 20:22:27 +07:00
parent 3bf53a90fd
commit 31f354d9ca
27 changed files with 194 additions and 24458 deletions
+18
View File
@@ -0,0 +1,18 @@
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 (
<main className="min-h-screen pt-32 pb-20 container mx-auto px-4 relative z-10 flex items-center justify-center">
<div className="absolute inset-0 bg-[radial-gradient(circle_at_center,_var(--tw-gradient-stops))] from-primary/5 via-transparent to-transparent -z-10 blur-3xl pointer-events-none" />
<SpeedtestClient dict={dict.speedtest} />
</main>
);
}