12 Commits

Author SHA1 Message Date
a2f02eaaa3 Update theme fonts 2026-04-29 16:24:51 +00:00
6171e876ab Update theme fonts 2026-04-29 16:24:51 +00:00
9989fe8f14 Update theme fonts 2026-04-29 16:23:52 +00:00
8ac9eb413b Update theme fonts 2026-04-29 16:23:52 +00:00
14c89d367e Update theme fonts 2026-04-29 16:23:44 +00:00
62accbadf7 Update theme fonts 2026-04-29 16:23:44 +00:00
4996209332 Update theme fonts 2026-04-29 16:22:32 +00:00
0333a286e7 Update theme fonts 2026-04-29 16:22:32 +00:00
e10a701d51 Update theme fonts 2026-04-29 16:22:16 +00:00
5672b7a4ca Update theme fonts 2026-04-29 16:22:16 +00:00
9d86bdcf61 Update theme colors 2026-04-29 16:20:57 +00:00
21b8fca4b0 Update theme colors 2026-04-29 16:20:42 +00:00
2 changed files with 18 additions and 6 deletions

View File

@@ -7,6 +7,10 @@ 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 { Lato } from "next/font/google"; import { Lato } from "next/font/google";
import { Nunito } from "next/font/google";
import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Archivo } from "next/font/google";
@@ -21,10 +25,18 @@ export const metadata: Metadata = {
}, },
}; };
const lato = Lato({
variable: "--font-lato",
const manrope = Manrope({
variable: "--font-manrope",
subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"], subsets: ["latin"],
weight: ["100", "300", "400", "700", "900"],
}); });
export default function RootLayout({ export default function RootLayout({
@@ -35,7 +47,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${lato.variable} antialiased`}> <body className={`${manrope.variable} ${dmSans.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-dm-sans), 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-lato), sans-serif; font-family: var(--font-manrope), sans-serif;
} }