diff --git a/app/email/page.tsx b/app/email/page.tsx deleted file mode 100644 index 27daeca8..00000000 --- a/app/email/page.tsx +++ /dev/null @@ -1,23 +0,0 @@ -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"); - } - - return ( -
-
- -
-
- ); -} \ No newline at end of file