From 97c8a55ba3120825e3a56ffe7d488e509af61450 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20P=C4=99dzich?= Date: Sat, 7 Jan 2023 14:58:41 +0100 Subject: [PATCH] Create an About and Not Found pages --- src/pages/404.astro | 16 ++++++++++++++++ src/pages/about.astro | 44 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 60 insertions(+) create mode 100644 src/pages/404.astro create mode 100644 src/pages/about.astro diff --git a/src/pages/404.astro b/src/pages/404.astro new file mode 100644 index 0000000..47052ce --- /dev/null +++ b/src/pages/404.astro @@ -0,0 +1,16 @@ +--- +import Layout from '../layouts/Layout.astro'; + +const tagline = + 'Browse past versions of thousands of Spotify playlists saved over time'; +--- + + +
+ + This page doesn't exist (yet) + +
+
diff --git a/src/pages/about.astro b/src/pages/about.astro new file mode 100644 index 0000000..9fe6ad2 --- /dev/null +++ b/src/pages/about.astro @@ -0,0 +1,44 @@ +--- +import Layout from '../layouts/Layout.astro'; + +const currentYear = new Date().getFullYear(); +--- + + +
+

+ Spotify Playlist Archive +

+

+ © 2019-{currentYear} Mack Ward, Maciej PÄ™dzich. Released under MIT License. +

+

+ Developed using + these packages. Hosted on + Netlify. +

+

+ Source code: + playlist archive + | + this website. +

+ This project is not associated with Spotify AB in any way! +
+