10 Commits

Author SHA1 Message Date
3a792056b0 Merge version_4 into main
Merge version_4 into main
2026-06-03 16:56:04 +00:00
98d6150cb7 Update theme fonts 2026-06-03 16:55:58 +00:00
e49834b60f Update theme fonts 2026-06-03 16:55:57 +00:00
038d2ffca0 Merge version_4 into main
Merge version_4 into main
2026-06-03 16:55:22 +00:00
2fba4fe877 Update theme colors 2026-06-03 16:55:18 +00:00
65fea28d6d Merge version_3 into main
Merge version_3 into main
2026-06-03 16:55:09 +00:00
493494298f Merge version_3 into main
Merge version_3 into main
2026-06-03 16:53:32 +00:00
781a5646e9 Merge version_3 into main
Merge version_3 into main
2026-06-03 16:48:00 +00:00
61bc6e39af Merge version_3 into main
Merge version_3 into main
2026-06-03 16:46:09 +00:00
acf532f291 Merge version_3 into main
Merge version_3 into main
2026-06-03 16:45:06 +00:00
2 changed files with 11 additions and 5 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 { Source_Sans_3 } from "next/font/google";
import { Open_Sans } from "next/font/google";
@@ -41,8 +42,13 @@ export const metadata: Metadata = {
},
};
const sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3",
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
});
@@ -54,7 +60,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${sourceSans3.variable} antialiased`}>
<body className={`${inter.variable} ${openSans.variable} antialiased`}>
<Tag />
{children}
<script

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