|
import type { FC } from '@hono/hono/jsx';
|
|
|
|
export const Layout: FC = (props) => {
|
|
return (
|
|
<html lang='en'>
|
|
<head>
|
|
<meta charset='UTF-8' />
|
|
<meta name='viewport' content='width=device-width, initial-scale=1.0' />
|
|
<meta name='title' content='Introduction to Artificial General Intelligence' />
|
|
<meta name='description' content='Introduction to Artificial General Intelligence' />
|
|
<meta name='color-scheme' content='light dark' />
|
|
<link rel='stylesheet' href='static/global.css' />
|
|
<title>Introduction to Artificial General Intelligence</title>
|
|
</head>
|
|
<body>
|
|
{props.children}
|
|
</body>
|
|
</html>
|
|
);
|
|
};
|
|
|