Add a "no association with Spotify" disclaimer

This commit is contained in:
Maciej Pędzich 2022-07-21 11:10:58 +02:00
parent 4b00191313
commit 4434e566ca
2 changed files with 11 additions and 3 deletions

View File

@ -1,6 +1,10 @@
# DISCLAIMER
SPOTIFY is a registered trademark of Spotify AB. This project is not associated with Spotify AB in any way.
# spotifyplaylistarchive.com # spotifyplaylistarchive.com
This is the official website of [spotify-playlist-archive](https://github.com/mackorone/spotify-playlist-archive) project by [mackorone](https://github.com/mackorone). This is the frontend of [spotify-playlist-archive](https://github.com/mackorone/spotify-playlist-archive) repository by [mackorone](https://github.com/mackorone).
## Setup ## Setup

View File

@ -1,7 +1,7 @@
<template> <template>
<NuxtLayout name="centered-content"> <NuxtLayout name="centered-content">
<h1 class="m-0 text-5xl">Spotify Playlist Archive</h1> <h1 class="m-0 text-5xl">Spotify Playlist Archive</h1>
<div class="text-xl text-center"> <div class="w-6 text-xl text-center">
<p> <p>
&copy; 2019-{{ new Date().getFullYear() }} Mack Ward, Maciej Pędzich. &copy; 2019-{{ new Date().getFullYear() }} Mack Ward, Maciej Pędzich.
Released under MIT License. Released under MIT License.
@ -16,7 +16,7 @@
<NuxtLink to="https://www.netlify.com" target="_blank">Netlify</NuxtLink <NuxtLink to="https://www.netlify.com" target="_blank">Netlify</NuxtLink
>. >.
</p> </p>
<p> <p class="mb-2">
Source code: Source code:
<NuxtLink <NuxtLink
to="https://github.com/mackorone/spotify-playlist-archive" to="https://github.com/mackorone/spotify-playlist-archive"
@ -29,6 +29,10 @@
>this website</NuxtLink >this website</NuxtLink
>. >.
</p> </p>
<p class="mt-3 mb-0 line-height-4">
SPOTIFY is a registered trademark of Spotify AB. This project is not
associated with Spotify AB in any way.
</p>
</div> </div>
</NuxtLayout> </NuxtLayout>
</template> </template>