import type { Metadata } from "next" import { getTranslations } from "next-intl/server" export async function generateMetadata(): Promise { const t = await getTranslations("pricingPage.hero") return { title: t("headline") } } export default async function PricingPage() { const t = await getTranslations("pricingPage.hero") return (

{t("label")}

{t("headline")}

{t("subheadline")}

Pricing details coming soon
) }