NeahFront2/app/learn/page.tsx
2025-04-08 21:06:14 +02:00

24 lines
695 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 min-h-screen bg-black">
<div className="w-full h-screen">
<iframe
src="https://apprendre.slm-lab.net"
className="w-full h-full border-none"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowFullScreen
/>
</div>
</main>
);
}