30 Commits

Author SHA1 Message Date
4ade00cdd0 Update theme colors 2026-04-23 11:34:09 +00:00
25c1af9419 Update src/app/page.tsx 2026-04-23 11:32:53 +00:00
8b6ef1fa19 Merge version_10 into main
Merge version_10 into main
2026-04-17 17:54:20 +00:00
d103500dbb Update theme colors 2026-04-17 17:54:17 +00:00
4c356aad41 Merge version_9 into main
Merge version_9 into main
2026-04-17 17:49:52 +00:00
086d8e8342 Update theme colors 2026-04-17 17:49:49 +00:00
c338933594 Merge version_8 into main
Merge version_8 into main
2026-04-16 19:31:46 +00:00
0016b9e967 Update theme colors 2026-04-16 19:31:40 +00:00
ee7f3ee5e8 Merge version_7 into main
Merge version_7 into main
2026-04-16 19:31:12 +00:00
aa68d81696 Update theme colors 2026-04-16 19:31:09 +00:00
b6db99dc70 Merge version_6 into main
Merge version_6 into main
2026-04-16 19:29:25 +00:00
6f856809ba Update theme fonts 2026-04-16 19:29:22 +00:00
7d4bb39d58 Update theme fonts 2026-04-16 19:29:22 +00:00
c23e6f4989 Merge version_6 into main
Merge version_6 into main
2026-04-16 19:29:07 +00:00
415cce4617 Update theme fonts 2026-04-16 19:29:04 +00:00
7c94d9b900 Update theme fonts 2026-04-16 19:29:03 +00:00
de44e4b643 Merge version_6 into main
Merge version_6 into main
2026-04-16 19:28:40 +00:00
ca4ea2ad4e Update theme fonts 2026-04-16 19:28:37 +00:00
7fef153ed8 Update theme fonts 2026-04-16 19:28:37 +00:00
9a6aac92e7 Merge version_6 into main
Merge version_6 into main
2026-04-16 19:28:31 +00:00
b6576d2b8e Update theme fonts 2026-04-16 19:28:25 +00:00
3e8bbd4d44 Update theme fonts 2026-04-16 19:28:24 +00:00
6a2f6e5176 Merge version_6 into main
Merge version_6 into main
2026-04-16 19:18:00 +00:00
af2a5505d6 Update theme colors 2026-04-16 19:17:57 +00:00
b5e263dfcf Merge version_5 into main
Merge version_5 into main
2026-04-16 19:17:52 +00:00
448756c94f Update theme colors 2026-04-16 19:17:49 +00:00
4d08328d6f Update theme colors 2026-04-16 19:17:46 +00:00
71c38a8381 Merge version_3 into main
Merge version_3 into main
2026-04-16 19:17:38 +00:00
6168218bca Merge version_2 into main
Merge version_2 into main
2026-04-16 19:14:03 +00:00
15b76e04c9 Merge version_2 into main
Merge version_2 into main
2026-04-16 19:13:38 +00:00
4 changed files with 23 additions and 11 deletions

View File

@@ -7,6 +7,9 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Source_Sans_3 } from "next/font/google";
import { Open_Sans } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Libre_Baskerville } from "next/font/google";
@@ -20,8 +23,17 @@ export const metadata: Metadata = {
},
};
const sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3",
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
@@ -33,7 +45,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${sourceSans3.variable} antialiased`}>
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -21,7 +21,7 @@ export default function LandingPage() {
borderRadius="soft"
contentWidth="mediumSmall"
sizing="medium"
background="floatingGradient"
background="noiseDiagonalGradient"
cardStyle="outline"
primaryButtonStyle="flat"
secondaryButtonStyle="glass"
@@ -197,4 +197,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-source-sans-3), 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-source-sans-3), sans-serif;
font-family: var(--font-libre-baskerville), serif;
}

View File

@@ -12,13 +12,13 @@
--background: #ffffff;
--card: #f9f9f9;
--foreground: #000612e6;
--primary-cta: #15479c;
--foreground: #120a00e6;
--primary-cta: #FF7B05;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #000612e6;
--secondary-cta-text: #120a00e6;
--accent: #e2e2e2;
--background-accent: #c4c4c4;
--background-accent: #acc0f4;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);