2022-06-29 09:51:44 +02:00
|
|
|
<script setup lang="ts">
|
|
|
|
import Toast from 'primevue/toast';
|
2022-07-13 20:03:12 +02:00
|
|
|
|
|
|
|
useHead({
|
|
|
|
title: 'Spotify Playlist Archive',
|
|
|
|
meta: [
|
|
|
|
{
|
|
|
|
name: 'description',
|
2022-09-03 16:23:00 +02:00
|
|
|
content:
|
|
|
|
'Browse past versions of thousands of Spotify playlists saved over time'
|
2022-07-13 20:03:12 +02:00
|
|
|
}
|
|
|
|
]
|
|
|
|
});
|
2022-06-29 09:51:44 +02:00
|
|
|
</script>
|
|
|
|
|
2022-06-29 09:22:55 +02:00
|
|
|
<template>
|
2022-06-29 09:51:44 +02:00
|
|
|
<div class="w-full h-full flex flex-column">
|
2022-09-05 13:38:57 +02:00
|
|
|
<NavBar />
|
2022-06-29 09:51:44 +02:00
|
|
|
<main class="flex-1">
|
|
|
|
<NuxtPage />
|
|
|
|
</main>
|
|
|
|
<ClientOnly>
|
2022-07-02 15:19:04 +02:00
|
|
|
<Toast position="bottom-center" />
|
2022-06-29 09:51:44 +02:00
|
|
|
</ClientOnly>
|
|
|
|
</div>
|
2022-06-29 09:22:55 +02:00
|
|
|
</template>
|