import Admin from "./components/admin" import { getCurrentUser } from "@lib/server/session" import { notFound } from "next/navigation" const AdminPage = async () => { const user = await getCurrentUser() if (!user) { return notFound() } if (user.role !== "admin") { return notFound() } return } export default AdminPage