20 lines
548 B
XML
20 lines
548 B
XML
import { type PageProps } from "$fresh/server.ts";
|
|
import { asset } from "$fresh/runtime.ts";
|
|
|
|
export default function App({ Component }: PageProps) {
|
|
return (
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Aire-One's blog!</title>
|
|
<link rel="stylesheet" href={asset("/styles.css")} />
|
|
<link rel="stylesheet" href={asset("/markdown.css")} />
|
|
</head>
|
|
<body>
|
|
<Component />
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|