import { redirect } from "next/navigation"; import { getCurrentUser } from "@/lib/auth"; import SettingsForm from "@/components/settings/SettingsForm"; export default async function SettingsPage() { const user = await getCurrentUser(); if (!user) { redirect("/auth/login"); } return (
Manage your preferences and account