25 Commits

Author SHA1 Message Date
a1631448d2 Update theme fonts 2026-04-16 21:21:25 +00:00
5ef46ee0d2 Update theme fonts 2026-04-16 21:21:25 +00:00
58a839fbb2 Update theme fonts 2026-04-16 21:20:57 +00:00
59ae2aaebc Update theme fonts 2026-04-16 21:20:57 +00:00
cb4ec89b69 Update theme fonts 2026-04-16 21:19:30 +00:00
6cf2aa57eb Update theme fonts 2026-04-16 21:19:30 +00:00
c5c90829e2 Update theme fonts 2026-04-16 21:19:15 +00:00
29c950147a Update theme fonts 2026-04-16 21:19:15 +00:00
6cf5ebf783 Update theme fonts 2026-04-16 21:19:05 +00:00
ab765292e7 Update theme fonts 2026-04-16 21:19:04 +00:00
48695bcb12 Update theme fonts 2026-04-16 21:18:35 +00:00
b8490a6096 Update theme fonts 2026-04-16 21:18:34 +00:00
d8f5872c6b Update theme fonts 2026-04-16 21:18:32 +00:00
ae319c5544 Update theme fonts 2026-04-16 21:18:31 +00:00
05a5015f33 Update theme fonts 2026-04-16 20:36:06 +00:00
3481ea5632 Update theme fonts 2026-04-16 20:36:06 +00:00
f074d3c652 Update theme fonts 2026-04-16 20:35:40 +00:00
ee23e6aeaf Update theme fonts 2026-04-16 20:35:39 +00:00
0baeccd362 Update theme fonts 2026-04-16 20:35:22 +00:00
58b77e911b Update theme fonts 2026-04-16 20:35:22 +00:00
f6a3c2776d Update theme fonts 2026-04-16 20:35:09 +00:00
d7dcd2bb38 Update theme fonts 2026-04-16 20:35:08 +00:00
303d756825 Update theme fonts 2026-04-16 20:34:30 +00:00
f3a709a390 Update theme fonts 2026-04-16 20:34:30 +00:00
5d1bab4c94 Update theme colors 2026-04-16 20:21:08 +00:00
2 changed files with 22 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 { Open_Sans } from "next/font/google";
import { Archivo } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Manrope } from "next/font/google";
import { Montserrat } from "next/font/google";
@@ -20,10 +25,21 @@ export const metadata: Metadata = {
},
};
const roboto = Roboto({
variable: "--font-roboto",
const montserrat = Montserrat({
variable: "--font-montserrat",
subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
});
export default function RootLayout({
@@ -34,7 +50,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${roboto.variable} antialiased`}>
<body className={`${montserrat.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-montserrat), 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-montserrat), sans-serif;
}