NeahNew/app/notifications/page.tsx
2025-05-03 14:17:46 +02:00

14 lines
372 B
TypeScript

export default function NotificationsPage() {
return (
<div className="w-full h-[calc(100vh-8rem)]">
<iframe
src="https://example.com/notifications"
className="w-full h-full border-none"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowFullScreen
/>
</div>
)
}