3 Commits

Author SHA1 Message Date
fc3cd3594a Update src/app/page.tsx 2025-12-22 10:58:22 +00:00
8838c0adb7 Update src/app/layout.tsx 2025-12-22 10:58:22 +00:00
073657ae05 Update src/app/globals.css 2025-12-22 10:58:21 +00:00
3 changed files with 14 additions and 14 deletions

View File

@@ -4,13 +4,13 @@
/* Base units */ /* Base units */
/* --vw is set by ThemeProvider */ /* --vw is set by ThemeProvider */
--background: #f1f7f9;; --background: #ffffff;
--card: #ebf2f5;; --card: #fafafa;
--foreground: #404548;; --foreground: #000000;
--primary-cta: #a0c4d4;; --primary-cta: #ffcc00;
--secondary-cta: #ffffff;; --secondary-cta: #ffffff;
--accent: #c8dce8;; --accent: #000000;
--background-accent: #8fb0c4;; --background-accent: #f5f5f5;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
@@ -495,7 +495,7 @@ html {
body { body {
background-color: var(--background); background-color: var(--background);
color: var(--foreground); color: var(--foreground);
font-family: var(--font-playfair-display), sans-serif; font-family: var(--font-inter-tight), sans-serif;
position: relative; position: relative;
min-height: 100vh; min-height: 100vh;
overscroll-behavior: none; overscroll-behavior: none;
@@ -508,5 +508,5 @@ h3,
h4, h4,
h5, h5,
h6 { h6 {
font-family: var(--font-playfair-display), sans-serif; font-family: var(--font-inter-tight), sans-serif;
} }

View File

@@ -1,11 +1,11 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Playfair_Display } from "next/font/google"; import { Inter } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper"; import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
const playfairDisplay = Playfair_Display({ const inter = Inter({
variable: "--font-playfair-display", variable: "--font-inter",
subsets: ["latin"], subsets: ["latin"],
}); });
@@ -39,7 +39,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body <body
className={`${playfairDisplay.variable} antialiased`} className={`${inter.variable} antialiased`}
> >
<Tag /> <Tag />
{children} {children}

View File

@@ -1,4 +1,4 @@
"use client" "use client";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import HeroLogoBillboardSplitImage from '@/components/sections/hero/HeroLogoBillboardSplitImage'; import HeroLogoBillboardSplitImage from '@/components/sections/hero/HeroLogoBillboardSplitImage';