Changed the bug text on past websites and converted all text to lowercase

This commit is contained in:
Heli-o 2024-04-07 17:32:17 +02:00
parent 45ff8b1438
commit 45f1676c88
6 changed files with 15 additions and 7 deletions

View file

@ -1 +1,5 @@
---
title: Bookmarks
---
> [!info] Here you will be able to find links that I want to share (hopefully soon) > [!info] Here you will be able to find links that I want to share (hopefully soon)

View file

@ -30,4 +30,4 @@ title: Where you can find me
- [ToyHouse](https://toyhou.se/Ulysia) - [ToyHouse](https://toyhou.se/Ulysia)
> [!tip] Old websites that might have some additional info > [!tip] Old websites that might have some additional info
> They can be found [here](Past_Websites.md) > They can be found [here](past-website.md)

View file

@ -1 +1,5 @@
---
title: Projects
---
> [!bug] To be added Later > [!bug] To be added Later

View file

@ -10,7 +10,7 @@ But **I refuse** to do **`websites`** and **`IT Support`**. Fuck those. no
Also I am a furry. I am not sorry if it inconveniences you. Also I am a furry. I am not sorry if it inconveniences you.
Feel free to DM me on any of the socials listed down below or all in [[Links]]. Feel free to DM me on any of the socials listed down below or all in [[links]].
I never start conversation so it's up to you to start it. I never start conversation so it's up to you to start it.
# Quick Info about me # Quick Info about me

View file

@ -25,4 +25,4 @@ I ended up hosting this via [Go-Mojito](https://go-mojito.infinytum.co). The exp
> [!done] Online? Yes > [!done] Online? Yes
> [!bug] Possibly absolutely broken due to change of the URL > [!bug] CSS got broken for some reason. It's on the list of "what to fix in the near or far future"

View file

@ -9,10 +9,10 @@ const Homebar: QuartzComponent = ({ fileData, cfg, displayClass }: QuartzCompone
return ( return (
<div class="homebar"> <div class="homebar">
<a class="hb-button" href="/">Home</a> <a class="hb-button" href="/">Home</a>
<a class="hb-button" href="/Characters">Characters</a> <a class="hb-button" href="/characters">Characters</a>
<a class="hb-button" href="/Links">Where you can find me</a> <a class="hb-button" href="/links">Where you can find me</a>
<a class="hb-button" href="/Projects">Projects</a> <a class="hb-button" href="/projects">Projects</a>
<a class="hb-button" href="/Articles">Articles</a> <a class="hb-button" href="/articles">Articles</a>
</div> </div>
) )
} }