andrewBlogs
Script
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/** @jsxImportSource npm:react@18.2.0 */
import type { ReactNode } from "npm:react@18.2.0";
export function Layout({ children }: { children: ReactNode }) {
return (
<html lang="en">
<head>
<meta charSet="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Alex Whines</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/water.css@2/out/water.css" />
</head>
<body>
{children}
</body>
</html>
);
}
H
index.tsx