Skip to content

Commit dd43328

Browse files
CopilotGeekTrainer
andcommitted
Remove Google Fonts, use system font stack instead
Co-authored-by: GeekTrainer <6109729+GeekTrainer@users.noreply.github.com>
1 parent a2e5bb1 commit dd43328

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

client/src/layouts/Layout.astro

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@ const { title = "Tailspin Shelter" } = Astro.props;
1616
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
1717
<meta name="generator" content={Astro.generator} />
1818
<title>{title}</title>
19-
<link rel="preconnect" href="https://fonts.googleapis.com" />
20-
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
21-
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet" />
2219
</head>
2320
<body class="min-h-screen bg-slate-900 text-white m-0 w-full h-full font-sans">
2421
<Header />
@@ -34,7 +31,7 @@ const { title = "Tailspin Shelter" } = Astro.props;
3431
@import "tailwindcss";
3532

3633
:root {
37-
--font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
34+
--font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
3835
}
3936

4037
html {

0 commit comments

Comments
 (0)