Update to latest solidjs and added some spice

This commit is contained in:
aronmal 2024-02-23 19:08:09 +01:00
parent fad746ceec
commit b09418b3ec
Signed by: aronmal
GPG key ID: 816B7707426FC612
35 changed files with 4318 additions and 2831 deletions

View file

@ -1,14 +1,20 @@
import { Body, Title } from "solid-start";
import { Title } from "@solidjs/meta";
import Wrapper from "~/components/Wrapper";
import Navbar, { lightMode } from "~/components/en/Navbar";
import "~/styles/overview.scss";
function imprint() {
return (
<Body class="overview" classList={{ "light-mode": lightMode() }}>
<Wrapper class="overview" classList={{ "light-mode": lightMode() }}>
<Title>Impressum</Title>
<Navbar />
<article>
<article
style={{
"min-height": "100vh",
display: "inline-block",
}}
>
<h1>Impressum</h1>
<h2>Verantwortlich für den Inhalt gemäß § 18 Abs. 1 MStV:</h2>
@ -42,7 +48,7 @@ function imprint() {
Inhalt verantwortlich ist.
</p>
</article>
</Body>
</Wrapper>
);
}