about.vue 412 B

12345678910111213141516171819
  1. <template>
  2. <div>
  3. <h1 class="text-center mb-6">About</h1>
  4. <v-card class="pa-4">
  5. <p class="text-center">
  6. This is a demo application built with Symfony 7 + Nuxt.js 3.
  7. </p>
  8. <p class="text-center">
  9. <a href="https://github.com/olinox14/model_snc">Contribute</a>
  10. </p>
  11. </v-card>
  12. </div>
  13. </template>
  14. <script setup lang="ts">
  15. useHead({
  16. title: 'About'
  17. })
  18. </script>