18 lines
402 B
Vue
18 lines
402 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>
|