change bg colour

This commit is contained in:
grngxd 2025-06-08 14:52:59 +01:00
parent 31594891e5
commit 9fd4ab4e46
3 changed files with 11 additions and 2 deletions

9
src/routes/layout.tsx Normal file
View file

@ -0,0 +1,9 @@
import { component$, Slot } from '@builder.io/qwik';
export default component$(() => {
return (
<div class="flex flex-col min-h-screen bg-neutral-950 text-white">
<Slot />
</div>
);
});