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,12 +1,13 @@
import { Body, Title } from "solid-start";
import { Title } from "@solidjs/meta";
import AssetHandler from "~/components/Asset";
import Wrapper from "~/components/Wrapper";
import Navbar, { lightMode } from "~/components/en/Navbar";
import "~/styles/devices.scss";
function KSS22() {
const { FullscreenView, Asset } = AssetHandler();
return (
<Body class="devices" classList={{ "light-mode": lightMode() }}>
<Wrapper class="devices" classList={{ "light-mode": lightMode() }}>
<Title>KS S22</Title>
<FullscreenView />
<Navbar />
@ -215,7 +216,7 @@ function KSS22() {
</tbody>
</table>
</article>
</Body>
</Wrapper>
);
}