From e68dea963c10c7379bbf16077c930f3d207a15bb Mon Sep 17 00:00:00 2001 From: development Date: Fri, 26 Dec 2025 00:47:08 +0000 Subject: [PATCH 1/3] Update src/app/globals.css --- src/app/globals.css | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/app/globals.css b/src/app/globals.css index c2073df..ac79b74 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -4,13 +4,13 @@ /* Base units */ /* --vw is set by ThemeProvider */ - --background: #f8f9fa;; - --card: #f0f2f5;; - --foreground: #1e293b;; - --primary-cta: #1e3a8a;; - --secondary-cta: #ffffff;; - --accent: #fbbf24;; - --background-accent: #d97706;; + --background: #080000; + --card: #1e0d0d; + --foreground: #ffe6e6; + --primary-cta: #ff7a7a; + --secondary-cta: #1e0909; + --accent: #7b4242; + --background-accent: #65292c; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); @@ -495,7 +495,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-prata), sans-serif; + font-family: var(--font-inter and --font-merriweather), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -508,5 +508,5 @@ h3, h4, h5, h6 { - font-family: var(--font-prata), sans-serif; + font-family: var(--font-inter and --font-merriweather), sans-serif; } \ No newline at end of file From 3ea66c43936d374c5f49ccd201c73b72642d0c68 Mon Sep 17 00:00:00 2001 From: development Date: Fri, 26 Dec 2025 00:47:09 +0000 Subject: [PATCH 2/3] Update src/app/layout.tsx --- src/app/layout.tsx | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 789e046..d3e502f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,13 +1,19 @@ import type { Metadata } from "next"; -import { Prata } from "next/font/google"; +import { Inter } from "next/font/google"; +import { Merriweather } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const prata = Prata({ - variable: "--font-prata", +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], - weight: ["400"], +}); + +const merriweather = Merriweather({ + variable: "--font-merriweather", + subsets: ["latin"], + weight: ["300", "400", "700", "900"], }); export const metadata: Metadata = { @@ -41,7 +47,7 @@ export default function RootLayout({ {children} @@ -1267,4 +1273,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} From aedd87ccc7a5c216a2142f5cf2581c04ce7a509e Mon Sep 17 00:00:00 2001 From: development Date: Fri, 26 Dec 2025 00:47:09 +0000 Subject: [PATCH 3/3] Update src/app/page.tsx --- src/app/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 9aac330..1b377ba 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,4 +1,4 @@ -"use client" +"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleMinimal from "@/components/navbar/NavbarStyleMinimal"; @@ -348,4 +348,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +}