Initial commit

This commit is contained in:
root
2025-12-21 09:58:07 -05:00
committed by Sebastian Krupinski
commit c859d15d25
46 changed files with 14119 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
<script setup lang="ts">
import TypographyHeadlines from '@/components/typography/TypographyHeadlines.vue'
import TypographyTexts from '@/components/typography/TypographyTexts.vue'
</script>
<template>
<VRow>
<VCol cols="12">
<TypographyHeadlines />
</VCol>
<VCol cols="12">
<TypographyTexts />
</VCol>
</VRow>
</template>