From 386c44db9620e0d223fbf91cb0c4a441a5ef402e Mon Sep 17 00:00:00 2001 From: rinuwaii Date: Wed, 17 Jan 2024 00:36:46 -0500 Subject: [PATCH] a lot of things --- public/pageReqs/links/bluesky.svg | 18 +++++++ public/pageReqs/links/discord.svg | 32 +++++++++++ public/pageReqs/links/github.svg | 70 ++++++++++++++++++++++++ public/pageReqs/links/spotify.svg | 17 ++++++ public/pageReqs/links/steam.svg | 49 +++++++++++++++++ public/pageReqs/links/twitch.svg | 34 ++++++++++++ public/pageReqs/links/twitter.svg | 32 +++++++++++ public/pageReqs/links/youtube.svg | 24 +++++++++ src/components/Footer.astro | 5 ++ src/components/Header.astro | 40 +++++++++++--- src/components/buttons/Social.astro | 80 +++++++++++++++++++++------ src/layouts/BaseLayout.astro | 21 ++++---- src/pages/index.astro | 26 +++++++-- src/pages/links.astro | 22 ++++++-- src/resources/socialLinks.json | 84 +++++++++++++++++++++++++++++ 15 files changed, 513 insertions(+), 41 deletions(-) create mode 100644 public/pageReqs/links/bluesky.svg create mode 100644 public/pageReqs/links/discord.svg create mode 100644 public/pageReqs/links/github.svg create mode 100644 public/pageReqs/links/spotify.svg create mode 100644 public/pageReqs/links/steam.svg create mode 100644 public/pageReqs/links/twitch.svg create mode 100644 public/pageReqs/links/twitter.svg create mode 100644 public/pageReqs/links/youtube.svg create mode 100644 src/resources/socialLinks.json diff --git a/public/pageReqs/links/bluesky.svg b/public/pageReqs/links/bluesky.svg new file mode 100644 index 0000000..861ecf9 --- /dev/null +++ b/public/pageReqs/links/bluesky.svg @@ -0,0 +1,18 @@ + + + + diff --git a/public/pageReqs/links/discord.svg b/public/pageReqs/links/discord.svg new file mode 100644 index 0000000..d8b70b3 --- /dev/null +++ b/public/pageReqs/links/discord.svg @@ -0,0 +1,32 @@ + + + + + + image/svg+xml + + + + + + + diff --git a/public/pageReqs/links/github.svg b/public/pageReqs/links/github.svg new file mode 100644 index 0000000..19fb1dc --- /dev/null +++ b/public/pageReqs/links/github.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/pageReqs/links/spotify.svg b/public/pageReqs/links/spotify.svg new file mode 100644 index 0000000..b8a2179 --- /dev/null +++ b/public/pageReqs/links/spotify.svg @@ -0,0 +1,17 @@ + + + + + diff --git a/public/pageReqs/links/steam.svg b/public/pageReqs/links/steam.svg new file mode 100644 index 0000000..0d2acc9 --- /dev/null +++ b/public/pageReqs/links/steam.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + diff --git a/public/pageReqs/links/twitch.svg b/public/pageReqs/links/twitch.svg new file mode 100644 index 0000000..a1a583f --- /dev/null +++ b/public/pageReqs/links/twitch.svg @@ -0,0 +1,34 @@ + + + + + logo / glitch / black + Created with Sketch. + + + + + logo / glitch / black + + + + diff --git a/public/pageReqs/links/twitter.svg b/public/pageReqs/links/twitter.svg new file mode 100644 index 0000000..ec2a6fb --- /dev/null +++ b/public/pageReqs/links/twitter.svg @@ -0,0 +1,32 @@ + + + + + + + + + image/svg+xml + + + + + + diff --git a/public/pageReqs/links/youtube.svg b/public/pageReqs/links/youtube.svg new file mode 100644 index 0000000..9e82951 --- /dev/null +++ b/public/pageReqs/links/youtube.svg @@ -0,0 +1,24 @@ + + + + + + + + + diff --git a/src/components/Footer.astro b/src/components/Footer.astro index da5a7ad..dc0b836 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -8,11 +8,16 @@ padding: 0.5rem; background-color: #71578e50; backdrop-filter: blur(10px); + + display: flex; + justify-content: center; } .frame { display: flex; flex-direction: row; justify-content: center; + width: 100%; + max-width: 120ch; } diff --git a/src/components/Header.astro b/src/components/Header.astro index f2ab4e1..422fe05 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -2,12 +2,6 @@ import HeaderButton from './buttons/HeaderButton.astro'; ---