import { getTranslations } from "next-intl/server";
import { SupportClient } from "./_components/client";

export const generateMetadata = async () => {
    const t = await getTranslations();
    return {
        title: `${t('routes.support')} | ${t('routes.dashboard')}`
    }
};

export default function SupportPage() {
    return (
        <SupportClient />
    )
}
