import { getTranslations } from "next-intl/server"; import Link from "next/link"; interface LinkAreaProps { href: string; name: string; description: string; color: string; } function LinkArea({ href, name, description, color }: LinkAreaProps) { return (

{name}

{description}

); } export default async function HomePage() { const t = await getTranslations("home"); return ( <>

{t("title")}

{t("description")}

{t("fortune.quote")}

{t("fortune.author")}
); }