From a00f198750268c2a344d042380cd643ad7d5b06e Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 06:01:57 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 06529b2..2d5e393 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,16 +1,12 @@ import type { Metadata } from "next"; -import { Montserrat } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Inter_Tight } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const interTight = Inter_Tight({ + variable: "--font-inter-tight", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { @@ -46,7 +42,7 @@ export default function RootLayout({ {children} -- 2.49.1 From d5ae4d3a696d6a07bba3d0219d66e05054e0f525 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 06:01:57 +0000 Subject: [PATCH 2/3] Update src/app/page.tsx --- src/app/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 36f2509..f487b2e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -43,7 +43,7 @@ export default function SkyquroTech() {
Date: Thu, 5 Mar 2026 06:01:57 +0000 Subject: [PATCH 3/3] Update src/app/styles/base.css --- src/app/styles/base.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/styles/base.css b/src/app/styles/base.css index 62c2d18..a25430f 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -11,7 +11,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-inter), sans-serif; + font-family: var(--font-inter-tight), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-montserrat), sans-serif; + font-family: var(--font-inter-tight), sans-serif; } -- 2.49.1