diff --git a/.astro/icon.d.ts b/.astro/icon.d.ts index aa01ed8..bafca30 100644 --- a/.astro/icon.d.ts +++ b/.astro/icon.d.ts @@ -1,5 +1,5 @@ // Automatically generated by astro-icon -// e5c0fc0eb3d33158f5f6f437f5db228377727e61d76a0a51b052e85ec3b5ea80 +// dd75c69f234f6d5bc112e280307d6bbf56bab6a68dd7652d0ed885ef47b38458 declare module 'virtual:astro-icon' { export type Icon = @@ -9982,5 +9982,7 @@ declare module 'virtual:astro-icon' { | "mdi:zodiac-sagittarius" | "mdi:zodiac-scorpio" | "mdi:zodiac-taurus" - | "mdi:zodiac-virgo"; + | "mdi:zodiac-virgo" + | "curseforge" + | "modrinth"; } \ No newline at end of file diff --git a/public/accessible-components.webp b/public/accessible-components.webp deleted file mode 100644 index 8113bd0..0000000 Binary files a/public/accessible-components.webp and /dev/null differ diff --git a/public/astronaut-hero-img.webp b/public/astronaut-hero-img.webp deleted file mode 100644 index 187054b..0000000 Binary files a/public/astronaut-hero-img.webp and /dev/null differ diff --git a/public/blog/blog-posts.json b/public/blog/blog-posts.json index 465bb01..18a8da5 100644 --- a/public/blog/blog-posts.json +++ b/public/blog/blog-posts.json @@ -1,9 +1,10 @@ [ { + "postId": "new-website", "userId": "Martin Prokoph", - "date": "08.02.2024", + "date": "09th February 2024", "title": "So... I have a new website now!", - "body": "After years of just having a lame and half broken, useless site, I proudly present my new website.\nIt is built using Astro to achieve blazing fast performance, eye candy and usefulness at the same time.", + "body": "I finally revamped my website, making it faster, more accessible and more useful!", "img": "/social-preview-image.png" } ] \ No newline at end of file diff --git a/public/favicon.png b/public/favicon.png index 0bbcbbe..aae1562 100755 Binary files a/public/favicon.png and b/public/favicon.png differ diff --git a/public/favicon.svg b/public/favicon.svg deleted file mode 100644 index 0043fb2..0000000 --- a/public/favicon.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/public/midnightlib-example-code.png b/public/midnightlib-example-code.png deleted file mode 100644 index d0a325a..0000000 Binary files a/public/midnightlib-example-code.png and /dev/null differ diff --git a/public/midnightlib-example-code.png~ b/public/midnightlib-example-code.png~ deleted file mode 100644 index 5d4bcb7..0000000 Binary files a/public/midnightlib-example-code.png~ and /dev/null differ diff --git a/public/midnightlib-example-code.webp b/public/midnightlib-example-code.webp new file mode 100644 index 0000000..874bdbd Binary files /dev/null and b/public/midnightlib-example-code.webp differ diff --git a/public/motschensummer-cutout.png b/public/motschensummer-cutout.png new file mode 100644 index 0000000..af984ca Binary files /dev/null and b/public/motschensummer-cutout.png differ diff --git a/public/social-preview-image.png b/public/social-preview-image.png index beaf305..a0832f6 100644 Binary files a/public/social-preview-image.png and b/public/social-preview-image.png differ diff --git a/src/assets/img/logo.png b/src/assets/img/logo.png index 0bbcbbe..aae1562 100755 Binary files a/src/assets/img/logo.png and b/src/assets/img/logo.png differ diff --git a/src/components/CallToAction.astro b/src/components/CallToAction.astro index 2d2c71b..4315aaa 100644 --- a/src/components/CallToAction.astro +++ b/src/components/CallToAction.astro @@ -1,15 +1,20 @@ --- const { text, url_gh, url_mr, url_cf, url_wiki = "" } = Astro.props +import { Icon } from 'astro-icon/components' ---

{text}

-
- GitHub - Modrinth - CurseForge - {(url_wiki != '') ? Wiki : ''} +
+ {(url_gh != '') ? + GitHub : ''} + {(url_mr != '') ? + Modrinth : ''} + {(url_cf != '') ? + CurseForge : ''} + {(url_wiki != '') ? + Visit the new Wiki! : ''}
@@ -22,7 +27,6 @@ const { text, url_gh, url_mr, url_cf, url_wiki = "" } = Astro.props .call-to-action a:not(button), .call-to-action a:not(button):visited { - display: inline-block; vertical-align: top; padding: 1rem; margin: 0 1rem 0 1rem; diff --git a/src/components/Hero.astro b/src/components/Hero.astro index e82b007..a1b853d 100644 --- a/src/components/Hero.astro +++ b/src/components/Hero.astro @@ -1,7 +1,7 @@ --- import { Icon } from 'astro-icon/components' -const { src = '/retrowave-moon.png' } = Astro.props +const { src = '/motschensummer-cutout.png' } = Astro.props ---
@@ -12,16 +12,16 @@ const { src = '/retrowave-moon.png' } = Astro.props Modding done with passion
diff --git a/src/components/Navigation.astro b/src/components/Navigation.astro index a34db1d..29dd631 100644 --- a/src/components/Navigation.astro +++ b/src/components/Navigation.astro @@ -3,12 +3,17 @@ import ResponsiveToggle from './ResponsiveToggle.astro' import { DarkMode } from 'accessible-astro-components' import { Image } from 'astro:assets' import logo from '../assets/img/logo.png' +import logo_lightmode from '../assets/img/logo_lightmode.png' + --- +