first commit

This commit is contained in:
Justin Visser 2026-03-02 20:09:27 +01:00
commit b47f825d54
83 changed files with 10016 additions and 0 deletions

View file

@ -0,0 +1,17 @@
<script setup lang="ts">
import type { Segment } from "@/types/segment";
defineProps<{
segment: Segment;
}>();
</script>
<template>
<iframe
:src="segment.content"
:title="segment.title"
class="h-[600px] w-full rounded border-none"
sandbox="allow-scripts allow-same-origin allow-popups"
allow="fullscreen"
/>
</template>