mirror of
https://github.com/maciejpedzich/spotifyplaylistarchive.com.git
synced 2024-11-09 23:13:01 +01:00
35 lines
1.0 KiB
Vue
35 lines
1.0 KiB
Vue
|
<template>
|
||
|
<NuxtLayout name="centered-content">
|
||
|
<h1 class="m-0 text-5xl">Spotify Playlist Archive</h1>
|
||
|
<div class="text-xl text-center">
|
||
|
<p>
|
||
|
© 2019-{{ new Date().getFullYear() }} Mack Ward, Maciej Pędzich.
|
||
|
Released under MIT License.
|
||
|
</p>
|
||
|
<p>
|
||
|
Developed using
|
||
|
<NuxtLink
|
||
|
to="https://github.com/maciejpedzich/spotify-playlist-archive-website/blob/master/package.json#L11"
|
||
|
target="_blank"
|
||
|
>these packages</NuxtLink
|
||
|
>. Hosted on
|
||
|
<NuxtLink to="https://www.netlify.com" target="_blank">Netlify</NuxtLink
|
||
|
>.
|
||
|
</p>
|
||
|
<p>
|
||
|
Source code:
|
||
|
<NuxtLink
|
||
|
to="https://github.com/mackorone/spotify-playlist-archive"
|
||
|
target="_blank"
|
||
|
>playlist archive</NuxtLink
|
||
|
>,
|
||
|
<NuxtLink
|
||
|
to="https://github.com/maciejpedzich/spotify-playlist-archive-website"
|
||
|
target="_blank"
|
||
|
>this website</NuxtLink
|
||
|
>.
|
||
|
</p>
|
||
|
</div>
|
||
|
</NuxtLayout>
|
||
|
</template>
|