import { getServerSession } from "next-auth/next"; import { authOptions } from "@/app/api/auth/[...nextauth]/route"; import { redirect } from "next/navigation"; import { ResponsiveIframe } from "@/app/components/responsive-iframe"; export default async function Page() { const session = await getServerSession(authOptions); if (!session) { redirect("/signin"); } const mailUrl = process.env.NEXT_PUBLIC_IFRAME_MAIL_URL; if (!mailUrl) { console.warn("NEXT_PUBLIC_IFRAME_MAIL_URL is not defined in environment variables"); } return (
); }