import { getAuth } from "@/auth/queries/getauth"; import AdminHome from "./home"; const ProtectedDashboardPage = async () => { const { user } = await getAuth(); return (
); }; export default ProtectedDashboardPage;