From bb30a4b129c8521deedaa6ada8618d72012baff6 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 04:06:54 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9beed6c..76b637d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,20 +1,9 @@ import type { Metadata } from "next"; -import { Nunito } from "next/font/google"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const nunito = Nunito({ - variable: "--font-nunito", subsets: ["latin"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); @@ -48,9 +37,7 @@ export default function RootLayout({ return ( - + {children} -- 2.49.1 From fb67c1e3201e680fab8b8d7fb8939a950fd2f62f Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 04:06:54 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 6f1bd41..f048464 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,7 +1,7 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; import HeroCarouselLogo from "@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo"; import TextAbout from "@/components/sections/about/TextAbout"; import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia"; @@ -15,27 +15,27 @@ import { Facebook, Instagram, Linkedin, Twitter } from "lucide-react"; export default function LandingPage() { return ( -- 2.49.1 From c0b16283d11e369f2e06ca06879189bc9b1406b2 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 04:06:55 +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 b9e5214..34aea07 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-nunito), sans-serif; + font-family: var(--font-inter), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-nunito), sans-serif; + font-family: var(--font-inter), sans-serif; } -- 2.49.1 From 5fb035bcf47d6f075fbe1cf6a9fa18d7048cb64f Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 04:06:55 +0000 Subject: [PATCH 4/4] Update src/app/styles/variables.css --- src/app/styles/variables.css | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index d7ffd3b..c829944 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -3,22 +3,22 @@ /* --vw is set by ThemeProvider */ /* --background: #ffffff;;;; - --card: #f9f9f9;;;; - --foreground: #000612e6;;;; - --primary-cta: #549bff;;;; - --secondary-cta: #f9f9f9;;;; - --accent: #e2e2e2;;;; - --background-accent: #c4c4c4;;;; */ + --card: #ffffff;;;; + --foreground: #000000;;;; + --primary-cta: #000000;;;; + --secondary-cta: #f5f5f5;;;; + --accent: #cccccc;;;; + --background-accent: #f0f0f0;;;; */ --background: #ffffff;;;; - --card: #f9f9f9;;;; - --foreground: #000612e6;;;; - --primary-cta: #549bff;;;; + --card: #ffffff;;;; + --foreground: #000000;;;; + --primary-cta: #000000;;;; --primary-cta-text: #ffffff;;;; - --secondary-cta: #f9f9f9;;;; + --secondary-cta: #f5f5f5;;;; --secondary-cta-text: #000612e6;;;; - --accent: #e2e2e2;;;; - --background-accent: #c4c4c4;;;; + --accent: #cccccc;;;; + --background-accent: #f0f0f0;;;; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1