"use client"; import { useRouter } from "next/navigation"; import type { Preset } from "@/lib/presets"; import { useLocalePath } from "@/lib/i18n/hooks"; export function PresetCard({ preset, ordinal, }: { preset: Preset; ordinal: string; }) { const router = useRouter(); const lp = useLocalePath(); return ( ); }