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" />
|
2023-08-02 17:21:03 +02:00
|
|
|
<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 />
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|