prettier and package.json fix

This commit is contained in:
2026-05-21 21:32:03 +02:00
parent c3debba6c2
commit 6274478d7e
18 changed files with 465 additions and 485 deletions
+17 -15
View File
@@ -1,19 +1,21 @@
export default function Stream() {
return (
<div className="text-ctp-text flex flex-col min-h-screen px-4 py-6">
<div className="w-full text-center flex flex-col flex-1">
<h1 className="text-4xl font-bold text-ctp-mauve mb-6">Stream</h1>
return (
<div className="text-ctp-text flex flex-col min-h-screen px-4 py-6">
<div className="w-full text-center flex flex-col flex-1">
<h1 className="text-4xl font-bold text-ctp-mauve mb-6">
Stream
</h1>
<div className="stream-frame w-full mx-auto flex-1 max-h-[85vh]">
<iframe
src="https://stream.aramjonghu.nl"
title="Stream"
allow="autoplay; fullscreen; picture-in-picture"
loading="lazy"
className="w-full h-full border-0 rounded-lg"
/>
<div className="stream-frame w-full mx-auto flex-1 max-h-[85vh]">
<iframe
src="https://stream.aramjonghu.nl"
title="Stream"
allow="autoplay; fullscreen; picture-in-picture"
loading="lazy"
className="w-full h-full border-0 rounded-lg"
/>
</div>
</div>
</div>
</div>
</div>
);
);
}