chore: squashed some commits, which are not for public viewing

fix: fixed ImageSection being broken on mobile
feat: added proper imprint
feat: added name to privacy-policy
feat: bump version
fix: fixed footer not rendering correct on some mobile devices
chore: bump version
feat: imported html from Config repo
Updated packages
Migration from astro to solid-start
Add database and auth
Add discord rest testing
Database schema rework
API meeting progress
Fix styles
This commit is contained in:
aronmal 2024-01-05 01:29:38 +01:00
parent eb3acd206c
commit 2e529cede8
Signed by: aronmal
GPG key ID: 816B7707426FC612
50 changed files with 9903 additions and 5045 deletions

View file

@ -1,35 +1,42 @@
---
import '../styles/components/NavBar.scss';
---
<nav>
<ul>
<li class="navElem">
<a class="textBx" href="/" target="_self">
<img
id="logo"
src="https://static.moonleay.net/img/lilJuddWeb/logos/logox256.png"
alt="The Bots Logo"
/>
li&apos;l Judd
</a>
</li>
<li class="navElem">
<a href="/features" target="_self">Features</a>
</li>
<li class="navElem">
<a href="/how-do-i" target="_self">How do I...?</a>
</li>
<li class="navElem">
<a href="/stack" target="_self">The Stack</a>
</li>
<li class="navElem">
<a href="/about" target="_self">About</a>
</li>
<li class="navElem">
<a
href="https://discord.com/api/oauth2/authorize?client_id=1024410658973941862&permissions=18977581952080&scope=bot"
target="_blank">Invite to your server</a
>
</li>
</ul>
</nav>
import "../styles/components/NavBar.scss";
function NavBar() {
return (
<nav>
<ul>
<li class="navElem">
<a class="textBx" href="/">
<img
id="logo"
src="https://static.moonleay.net/img/lilJuddWeb/logos/logox256.png"
alt="The Bots Logo"
/>
li&apos;l Judd
</a>
</li>
<li class="navElem">
<a href="/features">Features</a>
</li>
<li class="navElem">
<a href="/how-do-i">How do I...?</a>
</li>
<li class="navElem">
<a href="/stack">The Stack</a>
</li>
<li class="navElem">
<a href="/about">About</a>
</li>
<li class="navElem">
<a
href="https://discord.com/api/oauth2/authorize?client_id=1024410658973941862&permissions=18977581952080&scope=bot"
target="_blank"
>
Invite to your server
</a>
</li>
</ul>
</nav>
);
}
export default NavBar;