Update to latest solidjs and added some spice
This commit is contained in:
parent
fad746ceec
commit
b09418b3ec
35 changed files with 4318 additions and 2831 deletions
|
@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue