1
0

Init Commit

This commit is contained in:
2025-02-26 15:40:10 -06:00
commit 8ca7e1ce91
95 changed files with 14713 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<template>
<div class="flex flex-col mt-24">
<h1 class="text-white font-bold text-4xl sm:text-5xl">{{ props.title }}</h1>
<div
class="fixed rounded-sm bg-red-500 ml-6 -z-[30] mt-6 min-h-[20px] min-w-[100px] sm:mt-8 sm:ml-8"
></div>
</div>
</template>
<script lang="ts" setup>
const props = defineProps<{
title: string;
}>();
</script>
<style></style>