NeahFront3/components/announcement/announcement-frame.tsx
2025-04-09 18:02:58 +02:00

14 lines
393 B
TypeScript

"use client";
export function AnnouncementFrame() {
return (
<div className="w-full h-[calc(100vh-8rem)]">
<iframe
src={process.env.NEXT_PUBLIC_IFRAME_ANNOUNCEMENT_URL}
className="w-full h-full border-none"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowFullScreen
/>
</div>
);
}