From e3e02b8f7db84043a3ca5efc1d3a8055e48b4f8b Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 04:07:25 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c8aa07c..7da251c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,12 @@ import type { Metadata } from "next"; -import { Nunito } from "next/font/google"; -import { Halant } from "next/font/google"; +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 nunito = Nunito({ - variable: "--font-nunito", subsets: ["latin"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); const inter = Inter({ @@ -49,7 +43,7 @@ export default function RootLayout({ {children} -- 2.49.1 From 21ad7418334c4ff993045410a7c9b0aa9f643db2 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 04:07:25 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index d0ed920..1855f7e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,6 +1,6 @@ "use client"; -import { Award, CheckCircle, Sparkles, Zap } from "lucide-react"; +import { Award, CheckCircle, Sparkles, Zap, Globe } from "lucide-react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; import HeroSplitTestimonial from "@/components/sections/hero/HeroSplitTestimonial"; @@ -37,6 +37,12 @@ export default function LandingPage() { { name: "Contact", id: "contact" } ]} button={{ text: "Book Event", href: "contact" }} + languageSelector={[ + { label: "EN", code: "en" }, + { label: "ES", code: "es" }, + { label: "FR", code: "fr" }, + { label: "DE", code: "de" } + ]} /> -- 2.49.1 From ff2ffd34c714d7d83b412eb8030205d4aca5ae3c Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 04:07:26 +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..c719d19 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-dm-sans), sans-serif; } -- 2.49.1 From 8e57e378c9f3192fe5f611f83f5e603a1ee98d5e Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 04:07:27 +0000 Subject: [PATCH 4/4] 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 6070eb9..c0dfaf5 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: #F5F5F5;; - --card: #FFFFFF;; - --foreground: #333333;; - --primary-cta: #191970;; - --secondary-cta: #007BFF;; - --accent: #E50914;; - --background-accent: #191970;; */ + /* --background: #0f0f0f;; + --card: #1a1a1a;; + --foreground: #ffffff;; + --primary-cta: #e63946;; + --secondary-cta: #2a2a2a;; + --accent: #e63946;; + --background-accent: #e63946;; */ - --background: #F5F5F5;; - --card: #FFFFFF;; - --foreground: #333333;; - --primary-cta: #191970;; + --background: #0f0f0f;; + --card: #1a1a1a;; + --foreground: #ffffff;; + --primary-cta: #e63946;; --primary-cta-text: #FFFFFF;; - --secondary-cta: #007BFF;; + --secondary-cta: #2a2a2a;; --secondary-cta-text: #FFFFFF;; - --accent: #E50914;; - --background-accent: #191970;; + --accent: #e63946;; + --background-accent: #e63946;; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1