homeman-deno/routes/_app.tsx

18 lines
440 B
TypeScript
Raw Normal View History

2024-01-05 13:22:56 -06:00
import { type PageProps } from '$fresh/server.ts'
export default function App({ Component }: PageProps) {
return (
<html>
<head>
<meta charset='utf-8' />
<meta name='viewport' content='width=device-width, initial-scale=1.0' />
<title>homeman-deno</title>
<link rel='stylesheet' href='/styles.css' />
</head>
2024-01-05 21:10:38 -06:00
<body class='dark:bg-zinc-950 dark:text-zinc-100'>
2024-01-05 13:22:56 -06:00
meow
<Component />
</body>
</html>
)
}