3 Commits

Author SHA1 Message Date
c67630516c Update theme fonts 2026-06-10 07:33:44 +00:00
f34e61e7dc Update theme fonts 2026-06-10 07:33:44 +00:00
866e0b2bc5 Update theme colors 2026-06-10 07:32:01 +00:00
3 changed files with 12 additions and 6 deletions

View File

@@ -6,6 +6,7 @@ import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper"; import { ServiceWrapper } from "@/components/ServiceWrapper";
import { getVisualEditScript } from "@/utils/visual-edit-script"; import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Manrope } from "next/font/google"; import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
@@ -40,8 +41,13 @@ export const metadata: Metadata = {
}, },
}; };
const manrope = Manrope({
variable: "--font-manrope", const dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"], subsets: ["latin"],
}); });
@@ -53,7 +59,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${manrope.variable} antialiased`}> <body className={`${dmSans.variable} ${inter.variable} antialiased`}>
{children} {children}
<script <script

View File

@@ -11,7 +11,7 @@ html {
body { body {
background-color: var(--background); background-color: var(--background);
color: var(--foreground); color: var(--foreground);
font-family: var(--font-manrope), sans-serif; font-family: var(--font-inter), sans-serif;
position: relative; position: relative;
min-height: 100vh; min-height: 100vh;
overscroll-behavior: none; overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4, h4,
h5, h5,
h6 { h6 {
font-family: var(--font-manrope), sans-serif; font-family: var(--font-dm-sans), sans-serif;
} }

View File

@@ -12,7 +12,7 @@
--background: #f7f6f7; --background: #f7f6f7;
--card: #ffffff; --card: #ffffff;
--foreground: #250c0d; --foreground: #0055C8;
--primary-cta: #b82b40; --primary-cta: #b82b40;
--primary-cta-text: #f7f6f7; --primary-cta-text: #f7f6f7;
--secondary-cta: #ffffff; --secondary-cta: #ffffff;