11 Commits

Author SHA1 Message Date
64cdfe8fba Update theme fonts 2026-06-09 23:11:05 +00:00
9b78c48ba6 Update theme fonts 2026-06-09 23:11:04 +00:00
3cf3a8ca26 Update theme fonts 2026-06-09 23:11:02 +00:00
925db921dd Update theme fonts 2026-06-09 23:11:02 +00:00
5d0650caf3 Update src/app/styles/variables.css 2026-06-09 23:09:01 +00:00
2004718ec8 Update src/app/page.tsx 2026-06-09 23:09:00 +00:00
4050d788ec Merge version_8 into main
Merge version_8 into main
2026-06-09 23:06:19 +00:00
275b929451 Merge version_7 into main
Merge version_7 into main
2026-06-09 23:06:17 +00:00
4d543101c3 Update theme colors 2026-06-09 23:06:16 +00:00
7aa83fc920 Merge version_6 into main
Merge version_6 into main
2026-06-09 23:06:12 +00:00
95e39888d4 Merge version_5 into main
Merge version_5 into main
2026-06-09 22:46:31 +00:00
4 changed files with 24 additions and 18 deletions

View File

@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Inter_Tight } from "next/font/google";
import { Open_Sans } from "next/font/google";
@@ -40,10 +41,15 @@ export const metadata: Metadata = {
},
};
const interTight = Inter_Tight({
variable: "--font-inter-tight",
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export default function RootLayout({
@@ -54,7 +60,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${interTight.variable} antialiased`}>
<body className={`${inter.variable} ${openSans.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -17,9 +17,9 @@ export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
defaultTextAnimation="background-highlight"
defaultTextAnimation="reveal-blur"
borderRadius="rounded"
contentWidth="medium"
contentWidth="mediumLarge"
sizing="largeSizeMediumTitles"
background="none"
cardStyle="soft-shadow"

View File

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

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #fafffb;
--card: #ffffff;
--foreground: #001a0a;
--primary-cta: #0a705f;
--primary-cta-text: #fafffb;
--secondary-cta: #ffffff;
--secondary-cta-text: #001a0a;
--accent: #a8d9be;
--background-accent: #6bbfb8;
--background: #FFFFFF;
--card: #F8F8F8;
--foreground: #000000;
--primary-cta: #B8860B;
--primary-cta-text: #ffffff;
--secondary-cta: #E0E0E0;
--secondary-cta-text: #000000;
--accent: #D4AF37;
--background-accent: #F0F0F0;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);