From b502b8a5f7661ad8d13b707aadaa156d3d9e9c04 Mon Sep 17 00:00:00 2001 From: AmirReza Jamali Date: Sun, 30 Nov 2025 15:04:15 +0330 Subject: [PATCH] style(globals): Import Inter font and apply to body element - Import Inter font from Google Fonts with variable font weights - Set body font-family to use Inter as primary font with sans-serif fallback - Improves typography consistency across the application with a modern, professional font choice --- app/globals.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/globals.css b/app/globals.css index f3e3d78..9d14adf 100644 --- a/app/globals.css +++ b/app/globals.css @@ -1,9 +1,14 @@ +@import url("https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100&display=swap"); @import "tailwindcss"; :root { --background: #ffffff; --foreground: #171717; } + +body { + font-family: "Inter", sans-serif; +} @theme { --background: #171717; --foreground: #ffffff;