Neah_Front/components/gitlab/gitlab-frame.tsx
2025-04-08 14:45:23 +02:00

14 lines
381 B
TypeScript

"use client";
export function GitLabFrame() {
return (
<div className="w-full h-[calc(100vh-8rem)]">
<iframe
src="https://gite.slm-lab.net/user/oauth2/cube"
className="w-full h-full border-none"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowFullScreen
/>
</div>
);
}