diff options
| author | Yuval Adam <_@yuv.al> | 2025-06-15 14:29:26 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2025-06-15 14:29:26 +0200 |
| commit | b09d91f323dc130e6561f510983c51ec5111f20a (patch) | |
| tree | 4013ac8ce6b00a22dce9ab094920144226e224de /src/pages/404.astro | |
| parent | 600f54c92b4a9173246e37ccbe13c6aaff4992ca (diff) | |
Extract hard coded font families to globals.css
Diffstat (limited to 'src/pages/404.astro')
| -rw-r--r-- | src/pages/404.astro | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/pages/404.astro b/src/pages/404.astro index d08dd78..671fe4f 100644 --- a/src/pages/404.astro +++ b/src/pages/404.astro @@ -19,14 +19,10 @@ const description = "Page not found"; <link rel="icon" type="image/svg+xml" href="/favicon.svg" /> </head> - <body - class="h-screen flex items-center justify-center bg-white" - style="font-family: 'Inter', system-ui, -apple-system, sans-serif; line-height: 1.7;" - > + <body class="h-screen flex items-center justify-center bg-white"> <main class="text-center px-6"> <h1 - class="text-8xl font-light tracking-tight mb-8 text-gray-300" - style="font-family: 'JetBrains Mono', monospace;" + class="text-8xl font-light tracking-tight mb-8 text-gray-300 font-mono" > 404 </h1> |
