import type { Metadata } from "next"; import { getCurrentCustomer } from "@/lib/auth/customer"; import { ProfileForm } from "@/components/auth/ProfileForm"; export const metadata: Metadata = { title: "Profil" }; export default async function KontoProfilPage() { const customer = await getCurrentCustomer(); if (!customer) return null; return (

Profil

E-Mail: {customer.email} — für eine Änderung der E-Mail-Adresse melde dich bitte direkt bei Anna.

); }