initial commit

This commit is contained in:
Edward Tirado Jr 2026-02-16 19:12:00 -06:00
commit 869be69d67
42 changed files with 11444 additions and 0 deletions

View file

@ -0,0 +1,18 @@
<script lang="ts" setup>
const props = defineProps<{
title: string
}>()
</script>
<template>
<h2>{{ props.title }}</h2>
</template>
<style scoped>
h1 {
font-size: 2rem;
font-weight: bold;
margin-bottom: 1rem;
}
</style>