File size: 717 Bytes
e574122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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>
  );
};