init
This commit is contained in:
commit
2737aadc7f
13 changed files with 391 additions and 0 deletions
15
pages/home.tsx
Normal file
15
pages/home.tsx
Normal file
|
@ -0,0 +1,15 @@
|
|||
/** @jsx jsx */
|
||||
|
||||
import { jsx } from "https://deno.land/x/hono@v4.3.10/middleware.ts"
|
||||
import { BasePage } from "./components/base.tsx"
|
||||
import Main from "./components/main.tsx";
|
||||
import Heading from "./components/heading.tsx";
|
||||
|
||||
export default function HomePage() {
|
||||
return (
|
||||
<BasePage name="Home">
|
||||
<Heading></Heading>
|
||||
<Main>Main</Main>
|
||||
</BasePage>
|
||||
)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue