bank/routes/_app.tsx

23 lines
560 B
TypeScript
Raw Permalink Normal View History

2024-08-23 23:14:39 -05:00
import { type PageProps } from '$fresh/server.ts'
2024-08-25 11:21:06 -05:00
import { Partial } from '$fresh/runtime.ts'
2024-08-23 23:14:39 -05:00
export default function App({ Component }: PageProps) {
return (
<html>
<head>
<meta charset='utf-8' />
<meta name='viewport' content='width=device-width, initial-scale=1.0' />
2024-08-23 23:39:15 -05:00
<title>Bank</title>
2024-08-23 23:14:39 -05:00
<link rel='stylesheet' href='/styles.css' />
</head>
2024-08-25 11:21:06 -05:00
<body
class='bg-bg text-text w-screen min-w-full min-h-dvh overflow-hidden'
f-client-nav
>
<Partial name='body'>
<Component />
</Partial>
2024-08-23 23:14:39 -05:00
</body>
</html>
)
}