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 (

Settings

Manage your preferences and account

); }