first commit

This commit is contained in:
2025-07-16 22:08:48 +03:00
commit d692b55e9f
52 changed files with 9386 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<template>
<div class="flex column no-wrap">
<div class="flex w100 justify-center text-h4 q-mt-md text-bold q-pa-md text-grey">
{{ $t(title) }}
</div>
<div class="flex w100 justify-center q-pb-md column items-center">
<slot/>
</div>
</div>
</template>
<script setup lang="ts">
defineProps({
title: String
})
</script>
<style scoped>
</style>