18 lines
573 B
HTML
18 lines
573 B
HTML
<!-- https://github.com/vercel/geist-font/issues/72 -->
|
|
|
|
<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=Geist+Mono:wght@100..900&family=Geist:wght@100..900&display=swap" rel="stylesheet">
|
|
|
|
<style>
|
|
:root {
|
|
--font-geist-sans: "Geist", sans-serif;
|
|
--font-geist-mono: "Geist Mono", monospace;
|
|
}
|
|
body {
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
touch-action: manipulation;
|
|
}
|
|
</style>
|