import { redirect } from "next/navigation"; import { getCurrentUser } from "@/actions/settings"; import { ProfileForm } from "@/components/settings/profile-form"; import { AvatarUpload } from "@/components/settings/avatar-upload"; import { SocialLinksForm } from "@/components/settings/social-links-form"; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"; export default async function SettingsPage() { const user = await getCurrentUser(); if (!user) { redirect("/login"); } return (
Profile Picture Upload a picture to personalize your profile Profile Information Update your profile details visible to other users Social Links Add links to your social profiles
); }