import { getSession } from "../../../lib/auth/session"; import SettingsClient from "./settings-client"; export default async function SettingsPage() { const session = await getSession(); if (!session) { return (
🔒

Authentication Required

Please sign in to access settings.

); } return (
⚙️ Settings

Account Settings

Manage your profile, security, and preferences

); }