This commit is contained in:
2026-03-11 00:06:51 +01:00
commit 2215fd96f9
167 changed files with 2627 additions and 0 deletions

18
src/routes/+page.svelte Normal file
View File

@@ -0,0 +1,18 @@
<script lang="ts">
import RTSPVideoPlayer from "$lib/components/RTSPVideoPlayer.svelte";
</script>
<svelte:head>
<title>RTSP Stream Viewer</title>
</svelte:head>
<div class="min-h-screen bg-linear-to-br from-gray-900 to-gray-800 py-8">
<RTSPVideoPlayer />
</div>
<style>
:global(body) {
margin: 0;
padding: 0;
}
</style>