import type { Metadata } from 'next'; import { getRequiredServerComponentSession } from '@documenso/lib/next-auth/get-server-component-session'; import { Switch } from '@documenso/ui/primitives/switch'; import { SettingsHeader } from '~/components/(dashboard)/settings/layout/header'; import { LinkTemplatesForm } from '~/components/forms/link-templates'; import { PublicProfileForm } from '~/components/forms/public-profile'; export const metadata: Metadata = { title: 'Public profile', }; export default async function PublicProfileSettingsPage() { const { user } = await getRequiredServerComponentSession(); return (
); }