agi / src /layouts /layout.tsx
adom593's picture
Upload 8 files
e574122 verified
raw
history blame contribute delete
717 Bytes
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>
);
};