4 Commits

Author SHA1 Message Date
80f23a96fd Update src/app/globals.css 2026-01-06 11:31:11 +00:00
52f212e506 Update src/app/page.tsx 2026-01-06 11:17:25 +00:00
7745000316 Update src/app/layout.tsx 2026-01-06 11:17:24 +00:00
a37cec8dec Update src/app/globals.css 2026-01-06 11:17:23 +00:00
3 changed files with 16 additions and 11 deletions

View File

@@ -9,8 +9,8 @@
--foreground: #00120ae6;;
--primary-cta: #15ad59;;
--secondary-cta: #ffffff;;
--accent: #e2e2e2;;
--background-accent: #c4c4c4;;
--accent: #9ca3af;;
--background-accent: #e5e7eb;;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
@@ -495,7 +495,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-lato), sans-serif;
font-family: var(--font-playfair-display, --font-roboto), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -508,5 +508,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-lato), sans-serif;
font-family: var(--font-playfair-display, --font-roboto), sans-serif;
}

View File

@@ -1,13 +1,18 @@
import type { Metadata } from "next";
import { Lato } from "next/font/google";
import { Playfair_Display, Roboto } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const lato = Lato({
variable: "--font-lato",
const playfairDisplay = Playfair_Display({
variable: "--font-playfair-display",
subsets: ["latin"],
weight: ["100", "300", "400", "700", "900"],
});
const roboto = Roboto({
variable: "--font-roboto",
subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
});
export const metadata: Metadata = {
@@ -49,7 +54,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={lato.variable}
className={`${playfairDisplay.variable} ${roboto.variable}`}
>
<Tag />
{children}
@@ -1275,4 +1280,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -386,4 +386,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}