Neah/components/showcase/showcase-frame.tsx
2025-04-17 11:39:15 +02:00

14 lines
385 B
TypeScript

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