Files
sis/frontend/src/components/App.ts
T
jbrechtel 5075ef2718 Add neo-brutalist landing page
Title 'Sis' in nb-font-heading1, tagline 'For chores and stuff'
Warm cream background, centered nb-box layout
2026-07-15 14:52:49 -04:00

17 lines
561 B
TypeScript

import m, { Vnode } from "mithril";
interface AppAttrs {}
interface AppState {}
export const App: m.Component<AppAttrs, AppState> = {
view(_vnode: Vnode<AppAttrs, AppState>) {
return m(".nb-container", { style: { maxWidth: "640px", margin: "0 auto" } }, [
m(".nb-box", { style: { marginTop: "4rem", textAlign: "center", padding: "3rem 2rem" } }, [
m("h1", { class: "nb-font-heading1" }, "Sis"),
m("p", { class: "nb-font-heading2", style: { marginTop: "1rem", opacity: "0.7" } }, "For chores and stuff"),
]),
]);
},
};