From b5066bb7fea863742f25defd3d437f8b9407ec14 Mon Sep 17 00:00:00 2001
From: "gpt-engineer-app[bot]"
<159125892+gpt-engineer-app[bot]@users.noreply.github.com>
Date: Mon, 21 Jul 2025 10:13:55 +0000
Subject: [PATCH] Use Lato font for text
Apply Lato font to all non-heading text elements.
---
index.html | 3 +++
tailwind.config.ts | 3 +++
2 files changed, 6 insertions(+)
diff --git a/index.html b/index.html
index d5bf089..058c98d 100644
--- a/index.html
+++ b/index.html
@@ -6,6 +6,9 @@
interactive-intellectual-vault
+
+
+
diff --git a/tailwind.config.ts b/tailwind.config.ts
index b821551..a518b4e 100644
--- a/tailwind.config.ts
+++ b/tailwind.config.ts
@@ -101,6 +101,9 @@ export default {
animation: {
'accordion-down': 'accordion-down 0.2s ease-out',
'accordion-up': 'accordion-up 0.2s ease-out'
+ },
+ fontFamily: {
+ 'sans': ['Lato', 'ui-sans-serif', 'system-ui', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', 'Noto Sans', 'sans-serif']
}
}
},