website/_includes/layouts/main.tsx

16 lines
364 B
TypeScript
Raw Normal View History

2023-07-23 16:44:56 -04:00
export default function({ title, children }) {
return (
<html>
<head>
<meta charSet="utf-8"/>
2023-07-23 16:44:56 -04:00
<title>{ title }</title>
2023-07-23 21:50:39 -04:00
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
2023-07-23 21:19:15 -04:00
<link rel="stylesheet" href="styles/main.css"/>
2023-07-23 16:44:56 -04:00
</head>
<body>
{ children }
</body>
</html>
);
}