23 Commits

Author SHA1 Message Date
8e3493c335 Update theme fonts 2026-06-10 08:16:57 +00:00
ead9e7ece4 Update theme fonts 2026-06-10 08:16:57 +00:00
83dec13e98 Update theme fonts 2026-06-10 08:16:49 +00:00
1772d15b23 Update theme fonts 2026-06-10 08:16:49 +00:00
cc4b5de67b Update theme fonts 2026-06-10 08:16:39 +00:00
97d825dd57 Update theme fonts 2026-06-10 08:16:39 +00:00
5b7ec75c7f Update theme fonts 2026-06-10 08:15:58 +00:00
c83d0aabd9 Update theme fonts 2026-06-10 08:15:58 +00:00
e36efad300 Update theme fonts 2026-06-10 08:15:48 +00:00
143d25b604 Update theme fonts 2026-06-10 08:15:48 +00:00
69935a4e57 Update theme colors 2026-06-10 08:13:44 +00:00
d25cb10aa7 Update theme colors 2026-06-10 08:13:24 +00:00
01243f8ed3 Update theme colors 2026-06-10 08:13:01 +00:00
ec671cfe20 Update src/app/styles/variables.css 2026-06-10 07:53:47 +00:00
fdee25c564 Update src/app/page.tsx 2026-06-10 07:53:47 +00:00
0eca440a81 Merge version_4 into main
Merge version_4 into main
2026-06-09 15:23:06 +00:00
c4c23cf421 Merge version_4 into main
Merge version_4 into main
2026-06-09 15:19:47 +00:00
8d2b20d849 Merge version_4 into main
Merge version_4 into main
2026-06-09 15:19:18 +00:00
5d39a01a69 Merge version_4 into main
Merge version_4 into main
2026-06-09 15:18:35 +00:00
67bad36452 Merge version_4 into main
Merge version_4 into main
2026-06-09 15:17:10 +00:00
c95b69c336 Merge version_4 into main
Merge version_4 into main
2026-06-09 15:15:37 +00:00
9bfb4efbb9 Merge version_3 into main
Merge version_3 into main
2026-06-09 15:15:30 +00:00
429b5e2b84 Merge version_2 into main
Merge version_2 into main
2026-06-09 15:12:56 +00:00
4 changed files with 21 additions and 15 deletions

View File

@@ -7,6 +7,11 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Libre_Baskerville } from "next/font/google";
import { Inter_Tight } from "next/font/google";
import { Mulish } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Montserrat } from "next/font/google";
import { Lato } from "next/font/google";
@@ -40,14 +45,15 @@ export const metadata: Metadata = {
},
};
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter",
const lato = Lato({
variable: "--font-lato",
subsets: ["latin"],
weight: ["100", "300", "400", "700", "900"],
});
export default function RootLayout({
@@ -58,7 +64,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
<body className={`${lato.variable} antialiased`}>
<Tag />
{children}
<script

View File

@@ -19,8 +19,8 @@ export default function LandingPage() {
borderRadius="pill"
contentWidth="compact"
sizing="mediumLargeSizeMediumTitles"
background="floatingGradient"
cardStyle="glass-depth"
background="noise"
cardStyle="soft-shadow"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="solid"
headingFontWeight="bold"

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-lato), 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-lato), sans-serif;
}

View File

@@ -12,11 +12,11 @@
--background: #0a0a0a;
--card: #1a1a1a;
--foreground: #f0f8ffe6;
--primary-cta: #cee7ff;
--foreground: #ffffffe6;
--primary-cta: #e6e6e6;
--primary-cta-text: #0a0a0a;
--secondary-cta: #1a1a1a;
--secondary-cta-text: #f0f8ffe6;
--secondary-cta-text: #ffffffe6;
--accent: #737373;
--background-accent: #737373;