fix: some shit

This commit is contained in:
2023-07-27 15:03:35 +02:00
parent c7b5d3eac3
commit 07b5e44f22
2 changed files with 0 additions and 0 deletions

23
routes/_app.tsx Normal file
View File

@@ -0,0 +1,23 @@
import { AppProps } from "$fresh/server.ts";
import { Head } from "$fresh/runtime.ts";
export default function App({ Component }: AppProps) {
return (
<>
<Head>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link
rel="preconnect"
href="https://fonts.gstatic.com"
crossOrigin=""
/>
<link
href="https://fonts.googleapis.com/css2?family=Work+Sans:wght@100;400;700&display=swap"
rel="stylesheet"
/>
<link href="/global.css" rel="stylesheet" />
</Head>
<Component />
</>
);
}