website/_includes/layouts/main.tsx
Foster Hangdaan 3bfc56301f
Fix link of stylesheet
Use an absolute path so that it always starts at the root of the project.
2023-07-26 09:08:26 -04:00

18 lines
421 B
TypeScript

export default function({ title, children }) {
return (
<html>
<head>
<meta charSet="utf-8"/>
<title>{ title }</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" href="/styles/main.css"/>
</head>
<body>
<div className="main-content">
{ children }
</div>
</body>
</html>
);
}