Files
buildpath/frontend/app.vue
vhaudiquet 5034589565
All checks were successful
pipeline / build-and-push-images (push) Successful in 25s
pipeline / deploy (push) Successful in 7s
Added SEO meta
2024-12-02 15:48:48 +01:00

18 lines
405 B
Vue

<script setup lang="ts">
useSeoMeta({
title: 'BuildPath',
ogTitle: 'BuildPath',
description: 'BuildPath: a tool for League of Legends champions runes and build paths.',
ogDescription: 'BuildPath: a tool for League of Legends champions runes and build paths.',
})
</script>
<template>
<div>
<NuxtRouteAnnouncer />
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</div>
</template>