nose-pluto/nose/app/dir/index.tsx
Chris Wanstrath 465ed69fc3 great stuff
2025-09-15 14:27:15 -07:00

36 lines
710 B
TypeScript

import { text } from "./other"
import { css } from "@utils"
export default (c: Context) => {
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>
</>
}