From 986708fbb4b33b060814b68969552c735f1820ae Mon Sep 17 00:00:00 2001 From: typist Date: Wed, 29 Oct 2025 14:44:30 +0800 Subject: [PATCH] feat: add Google Fonts for improved typography - Included preconnect links for Google Fonts to optimize loading. - Added 'Roboto Mono' and 'Noto Sans SC' font families to enhance text presentation in the application. --- index.html | 5 +++++ src/index.css | 1 + 2 files changed, 6 insertions(+) diff --git a/index.html b/index.html index 42842b6..f67a837 100644 --- a/index.html +++ b/index.html @@ -18,6 +18,11 @@ + + + + + diff --git a/src/index.css b/src/index.css index 9f52dc8..6d0a9a3 100644 --- a/src/index.css +++ b/src/index.css @@ -116,6 +116,7 @@ } body { @apply bg-background text-foreground; + font-family: 'Roboto Mono', 'Noto Sans SC', 'SF Mono', Consolas, monospace; } }