refactor(web): migrate frontend to Tailwind CSS and Vike SSR

- Replace Mantine UI components with Tailwind CSS v4
- Migrate from static HTML to Vike-based SSR framework
- Disable SSR for game page (Emscripten requires browser environment)
- Simplify Emscripten loading to avoid hydration conflicts
- Remove Tailwind download logic from web.build.ts
- Add package manager lockfiles for reproducible builds
- Update .gitignore for node_modules and build artifacts
This commit is contained in:
Ryan Walters
2025-11-02 13:39:51 -06:00
parent ffc5b8d15b
commit fb98c077b5
15 changed files with 1117 additions and 423 deletions

View File

@@ -1,11 +1,9 @@
import "@mantine/core/styles.css";
import "./tailwind.css";
import "@fontsource/pixelify-sans";
import "@fontsource/nunito/800.css";
import "@fontsource/nunito";
import { AppShell, Burger, Group, MantineProvider, Flex, Stack, Drawer } from "@mantine/core";
import { useDisclosure } from "@mantine/hooks";
import theme from "./theme";
import { useState } from "react";
import { usePageContext } from "vike-react/usePageContext";
import { IconBrandGithub, IconDownload, IconDeviceGamepad3, IconTrophy } from "@tabler/icons-react";
@@ -44,11 +42,13 @@ export function Link({ href, label }: { href: string; label: string }) {
}
export default function LayoutDefault({ children }: { children: React.ReactNode }) {
const [opened, { toggle, close }] = useDisclosure();
const [opened, setOpened] = useState(false);
const toggle = () => setOpened((v) => !v);
const close = () => setOpened(false);
const mainLinks = links
.filter((link) => link.href.startsWith("/"))
.map((link) => <Link href={link.href} label={link.label} />);
.map((link) => <Link href={link.href} key={link.label} label={link.label} />);
const sourceLinks = links
.filter((link) => !link.href.startsWith("/"))
@@ -56,36 +56,56 @@ export default function LayoutDefault({ children }: { children: React.ReactNode
<a
href={link.href}
title={link.label}
key={link.label}
target="_blank"
className="transition-all duration-300 hover:drop-shadow-sm hover:drop-shadow-yellow-400"
className="transition-[drop-shadow] duration-1000 hover:drop-shadow-sm drop-shadow-yellow-400"
>
{link.icon}
</a>
));
return (
<MantineProvider forceColorScheme="dark" theme={theme}>
<div className="bg-black text-yellow-400 min-h-screen flex flex-col">
<AppShell header={{ height: 60 }} padding="md">
<AppShell.Header>
<Flex h="100%" px="md" align="center" justify="space-between">
<Flex h="100%" align="center" gap="md">
<Burger opened={opened} onClick={toggle} hiddenFrom="sm" size="sm" />
<Group visibleFrom="sm">{mainLinks}</Group>
</Flex>
<Group visibleFrom="sm">{sourceLinks}</Group>
</Flex>
</AppShell.Header>
<AppShell.Main>{children}</AppShell.Main>
</AppShell>
<Drawer opened={opened} onClose={close} title="Navigation">
<Stack>
{links.map((link) => (
<Link href={link.href} label={link.label} />
))}
</Stack>
</Drawer>
</div>
</MantineProvider>
<div className="bg-black text-yellow-400 min-h-screen flex flex-col">
<header className="sticky top-0 z-20 h-[60px] border-b border-yellow-400/25 bg-black">
<div className="h-full px-4 flex items-center justify-between">
<div className="flex items-center gap-3">
<button
aria-label="Open navigation"
onClick={toggle}
className="sm:hidden inline-flex items-center justify-center w-9 h-9 rounded border border-yellow-400/30 text-yellow-400"
>
<span className="sr-only">Toggle menu</span>
<div className="w-5 h-0.5 bg-yellow-400" />
</button>
<nav className="hidden sm:flex gap-4 items-center">{mainLinks}</nav>
</div>
<div className="hidden sm:flex gap-4 items-center">{sourceLinks}</div>
</div>
</header>
<main className="flex-1">{children}</main>
{opened && (
<div className="fixed inset-0 z-30">
<div className="absolute inset-0 bg-black/60" onClick={close} />
<div className="absolute left-0 top-0 h-full w-72 max-w-[80vw] bg-black border-r border-yellow-400/25 p-4">
<div className="mb-4 flex items-center justify-between">
<h2 className="text-lg font-bold">Navigation</h2>
<button
aria-label="Close navigation"
onClick={close}
className="inline-flex items-center justify-center w-8 h-8 rounded border border-yellow-400/30 text-yellow-400"
>
</button>
</div>
<div className="flex flex-col gap-3">
{links.map((link) => (
<Link href={link.href} key={link.label} label={link.label} />
))}
</div>
</div>
</div>
)}
</div>
);
}