import { ProfileForm } from "@/components/dashboard/profile-form"; import { db } from "@/lib/db"; import { DEFAULT_THEME_ID } from "@/lib/constants"; import { requireCurrentUser } from "@/lib/session"; export default async function DashboardProfilePage() { const user = await requireCurrentUser(); const [profile, themes] = await Promise.all([ db.profile.findUnique({ where: { userId: user.id } }), db.theme.findMany({ orderBy: { name: "asc" } }) ]); return (

Profile

Update how your public page appears. Username changes update your public URL.

); }