26 Commits

Author SHA1 Message Date
d32ee7a9b8 Update theme fonts 2026-04-19 07:31:19 +00:00
cfe2f6e7b3 Update theme fonts 2026-04-19 07:31:19 +00:00
14576fe71e Update theme fonts 2026-04-19 07:18:49 +00:00
85f3214ab1 Update theme fonts 2026-04-19 07:18:48 +00:00
57db48cd17 Update theme fonts 2026-04-19 07:16:41 +00:00
8f789fed77 Update theme fonts 2026-04-19 07:16:40 +00:00
58c6a0f648 Update theme fonts 2026-04-19 07:16:02 +00:00
ff9e15f8b7 Update theme fonts 2026-04-19 07:16:02 +00:00
32920c6847 Update theme fonts 2026-04-19 07:15:30 +00:00
9f6d5d8935 Update theme fonts 2026-04-19 07:15:30 +00:00
03b0550822 Update theme fonts 2026-04-19 07:14:39 +00:00
29268e97be Update theme fonts 2026-04-19 07:14:38 +00:00
314e728781 Update theme fonts 2026-04-19 07:13:45 +00:00
dab5b0604f Update theme fonts 2026-04-19 07:13:44 +00:00
6c4fb01520 Update theme fonts 2026-04-19 07:13:21 +00:00
5e91a75778 Update theme fonts 2026-04-19 07:13:21 +00:00
9d6e3c1421 Update theme fonts 2026-04-19 07:12:46 +00:00
5606ca6678 Update theme fonts 2026-04-19 07:12:45 +00:00
c5c84519fd Update theme fonts 2026-04-19 07:11:35 +00:00
f5894dc9b2 Update theme fonts 2026-04-19 07:11:34 +00:00
2f462cadc7 Update theme fonts 2026-04-19 07:08:07 +00:00
0f06a5ec68 Update theme fonts 2026-04-19 07:08:07 +00:00
5a20a4b800 Update theme fonts 2026-04-19 07:07:56 +00:00
3912acf2c6 Update theme fonts 2026-04-19 07:07:55 +00:00
ee3d8a60f3 Update theme colors 2026-04-19 07:00:51 +00:00
03d000979d Update theme colors 2026-04-19 07:00:39 +00:00
2 changed files with 27 additions and 6 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 { Roboto } from "next/font/google";
import { Montserrat } from "next/font/google";
import { Manrope } from "next/font/google";
import { Nunito } from "next/font/google";
import { Libre_Baskerville } from "next/font/google";
import { Archivo } from "next/font/google";
@@ -21,10 +26,26 @@ export const metadata: Metadata = {
},
};
const roboto = Roboto({
variable: "--font-roboto",
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
});
export default function RootLayout({
@@ -35,7 +56,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${roboto.variable} antialiased`}>
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
<script

View File

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