memorium/routes/_app.tsx

16 lines
407 B
TypeScript
Raw Normal View History

2023-07-26 13:47:01 +02:00
import { AppProps } from "$fresh/server.ts";
import { Head } from "$fresh/runtime.ts";
export default function App({ Component }: AppProps) {
return (
<>
<Head>
<link href="/global.css" rel="stylesheet" />
<link href="/prism-material-dark.css" rel="stylesheet" />
2023-08-06 17:47:26 +02:00
<link rel="icon" type="image/png" href="/favicon.png" />
2023-07-26 13:47:01 +02:00
</Head>
<Component />
</>
);
}