| 12345678910111213141516171819 |
- <template>
- <div>
- <h1 class="text-center mb-6">About</h1>
- <v-card class="pa-4">
- <p class="text-center">
- This is a demo application built with Symfony 7 + Nuxt.js 3.
- </p>
- <p class="text-center">
- <a href="https://github.com/olinox14/model_snc">Contribute</a>
- </p>
- </v-card>
- </div>
- </template>
- <script setup lang="ts">
- useHead({
- title: 'About'
- })
- </script>
|