14 lines
385 B
TypeScript
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>
|
|
);
|
|
}
|