From e751265987b2667d3bcdd4e19792d72fa1bae52d Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 1 Mar 2026 19:45:34 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 437934a..20f7375 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,11 +1,11 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { @@ -39,7 +39,7 @@ export default function RootLayout({ {children} -- 2.49.1 From 3a493828238a88cdb662ce33ce2ee339d351028c Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 1 Mar 2026 19:45:35 +0000 Subject: [PATCH 2/2] Update src/app/styles/variables.css --- src/app/styles/variables.css | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index a97298b..2e2c3e5 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -2,23 +2,23 @@ /* Base units */ /* --vw is set by ThemeProvider */ - /* --background: #060000;; - --card: #1d0d0d;; - --foreground: #ffe6e6;; - --primary-cta: #ff3d4a;; - --secondary-cta: #1f0a0a;; - --accent: #7b2d2d;; - --background-accent: #b8111f;; */ + /* --background: #f5f5f5;; + --card: #ffffff;; + --foreground: #1c1c1c;; + --primary-cta: #15479c;; + --secondary-cta: #ffffff;; + --accent: #a8cce8;; + --background-accent: #7ba3cf;; */ - --background: #060000;; - --card: #1d0d0d;; - --foreground: #ffe6e6;; - --primary-cta: #ff3d4a;; + --background: #f5f5f5;; + --card: #ffffff;; + --foreground: #1c1c1c;; + --primary-cta: #15479c;; --primary-cta-text: #e3deea;; - --secondary-cta: #1f0a0a;; + --secondary-cta: #ffffff;; --secondary-cta-text: #1f2027;; - --accent: #7b2d2d;; - --background-accent: #b8111f;; + --accent: #a8cce8;; + --background-accent: #7ba3cf;; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1