Neah/app/mediation/page.tsx
2025-05-02 13:08:49 +02:00

27 lines
701 B
TypeScript

import { getServerSession } from "next-auth/next";
import { authOptions } from "@/app/api/auth/[...nextauth]/route";
import { redirect } from "next/navigation";
export default async function Page() {
const session = await getServerSession(authOptions);
if (!session) {
redirect("/signin");
}
return (
<main className="w-full h-screen bg-black">
<div className="w-full h-full pt-12">
<iframe
src={process.env.NEXT_PUBLIC_IFRAME_MEDIATIONS_URL}
className="w-full h-full border-none"
allowFullScreen={true}
style={{
marginTop: '-64px'
}}
allowFullScreen
/>
</div>
</main>
);
}