// app/settings/profile/page.tsx import { cookies } from "next/headers"; import { redirect } from "next/navigation"; import { getMe } from "@/lib/api"; import { EditProfileForm } from "@/components/edit-profile-form"; export default async function EditProfilePage() { const token = (await cookies()).get("auth_token")?.value; if (!token) { redirect("/login"); } const me = await getMe(token).catch(() => null); if (!me) { redirect("/login"); } return (
This is how others will see you on the site.