6 Commits

Author SHA1 Message Date
628dc66463 Update theme fonts 2026-04-12 05:50:01 +00:00
8f32d49d67 Update theme fonts 2026-04-12 05:50:01 +00:00
32c86b8d06 Update theme fonts 2026-04-12 05:49:26 +00:00
ae0b0da4fa Update theme fonts 2026-04-12 05:49:25 +00:00
53b5e7fed2 Update theme colors 2026-04-12 05:49:13 +00:00
663792f54e Update theme colors 2026-04-12 05:48:41 +00:00
2 changed files with 11 additions and 5 deletions

View File

@@ -7,6 +7,8 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script"; import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Playfair_Display, Lato } from "next/font/google"; import { Playfair_Display, Lato } from "next/font/google";
import { Montserrat } from "next/font/google";
import { Figtree } from "next/font/google";
@@ -20,8 +22,12 @@ export const metadata: Metadata = {
}, },
}; };
const playfair = Playfair_Display({ variable: "--font-playfair", subsets: ["latin"] });
const lato = Lato({ variable: "--font-lato", subsets: ["latin"], weight: ["400", "700"] });
const figtree = Figtree({
variable: "--font-figtree",
subsets: ["latin"],
});
export default function RootLayout({ export default function RootLayout({
children, children,
@@ -31,7 +37,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${playfair.variable} ${lato.variable} antialiased`}> <body className={`${figtree.variable} antialiased`}>
<Tag /> <Tag />
{children} {children}
<script <script

View File

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