import { redirect } from "next/navigation"; import { auth } from "@/lib/auth"; import { prisma } from "@/lib/prisma"; import { getBackgroundImage } from "@/lib/preferences"; import NavigationWrapper from "@/components/NavigationWrapper"; import ProfileForm from "@/components/ProfileForm"; export default async function ProfilePage() { const session = await auth(); if (!session?.user) { redirect("/login"); } const user = await prisma.user.findUnique({ where: { id: session.user.id }, select: { id: true, email: true, username: true, avatar: true, hp: true, maxHp: true, xp: true, maxXp: true, level: true, score: true, createdAt: true, }, }); if (!user) { redirect("/login"); } const backgroundImage = await getBackgroundImage("home", "/got-background.jpg"); return (
); }