nose-pluto/nose/www/dir/index.tsx
Chris Wanstrath 43fbe0ad1d app -> www
2025-09-16 20:20:56 -07:00

29 lines
606 B
TypeScript

import { text } from "./other"
import { css } from "@utils"
export default () => {
return <>
{css`
body {
background-color: cyan;
font-family: "Comic Sans MS", "Comic Sans", "Chalkboard", "Comic Neue", cursive;
}
main { width: 500px; margin: 0 auto; }
h1 { color: red; border-bottom: 1px dashed red; }
p { color: magenta; font-size: 18px; }
`}
<main>
<h1>{text}</h1>
<p>
This is a really nice website. I'm glad you like it.
</p>
</main>
</>
}