From 9c84e0be5bfc172bc7656c46c247d75e92d04cfc Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 04:24:48 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3a20450..e2f2a7b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,17 +1,16 @@ import type { Metadata } from "next"; -import { Poppins } from "next/font/google"; -import { Nunito } from "next/font/google"; +import { Figtree } from "next/font/google"; +import { Mulish } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const poppins = Poppins({ - variable: "--font-poppins", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +const figtree = Figtree({ + variable: "--font-figtree", subsets: ["latin"], }); -const nunito = Nunito({ - variable: "--font-nunito", subsets: ["latin"], +const mulish = Mulish({ + variable: "--font-mulish", subsets: ["latin"], }); export const metadata: Metadata = { @@ -44,7 +43,7 @@ export default function RootLayout({ {children} -- 2.49.1 From 3d1327e96fd03198fe7a2d56f8f344adb1ad5f3c Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 04:24:48 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 5b79a16..c8c6260 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -13,16 +13,16 @@ import { Music, Mic2, Volume2, User, Sparkles, Share2, Mail } from 'lucide-react export default function LandingPage() { return ( @@ -139,7 +139,7 @@ export default function LandingPage() { tagAnimation="slide-up" title="Ready to Mix? Let's Create." description="Whether you need professional mixing, drumming services, or production consultation, I'm here to help elevate your sound. Send me a message and let's discuss your project." - background={{ variant: "sparkles-gradient" }} + background={{ variant: "gradient-bars" }} useInvertedBackground={false} imageSrc="http://img.b2bpic.net/free-photo/closeup-professional-microphone-swivel-boom-arm-stand-empty-vlog-broadcasting-studio-used-recording-social-media-content-detail-audio-live-broadcast-digital-mic_482257-36751.jpg" imageAlt="Professional microphone setup" -- 2.49.1 From af550a81aa90794995cec13c40bf0028084a5e75 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 04:24:49 +0000 Subject: [PATCH 3/4] 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 0f9f89d..578efaa 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-poppins), sans-serif; + font-family: var(--font-figtree), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-poppins), sans-serif; + font-family: var(--font-figtree), sans-serif; } -- 2.49.1 From 5c3d45d82a1a1c15cd96b7251c9f4835ac76de85 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 04:24:49 +0000 Subject: [PATCH 4/4] Update src/app/styles/variables.css --- src/app/styles/variables.css | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index f1f2850..7a18baa 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #fff8f3; - --card: #ffe8d9; - --foreground: #2b1810; - --primary-cta: #ff6b35; + --background: #0a0a0a; + --card: #1a1a1a; + --foreground: #ffffffe6; + --primary-cta: #e34400; --primary-cta-text: #ffffff; - --secondary-cta: #ffe8d9; + --secondary-cta: #1a1a1a; --secondary-cta-text: #000612e6; - --accent: #ffa500; - --background-accent: #ffb84d; + --accent: #ff7b05; + --background-accent: #f96b2f; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1