10 Commits

Author SHA1 Message Date
ad4ca5384e Update theme fonts 2026-04-18 05:30:18 +00:00
30573b068f Update theme fonts 2026-04-18 05:30:17 +00:00
f234c6ba37 Update theme fonts 2026-04-18 05:30:15 +00:00
a2fe648c3b Update theme fonts 2026-04-18 05:30:14 +00:00
7e58fae043 Update theme fonts 2026-04-18 05:29:23 +00:00
1c7e855ed1 Update theme fonts 2026-04-18 05:29:23 +00:00
23aed80578 Update theme fonts 2026-04-18 05:29:15 +00:00
8ef97cf1f8 Update theme fonts 2026-04-18 05:29:15 +00:00
56eb20f590 Update theme colors 2026-04-18 05:28:45 +00:00
06ae389023 Update theme colors 2026-04-18 05:28:42 +00:00
2 changed files with 13 additions and 5 deletions

View File

@@ -7,6 +7,10 @@ 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 { Lato } from "next/font/google";
import { Manrope } from "next/font/google";
import { Poppins } from "next/font/google";
import { Archivo } from "next/font/google";
@@ -21,8 +25,12 @@ export const metadata: Metadata = {
},
};
const sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3",
const archivo = Archivo({
variable: "--font-archivo",
subsets: ["latin"],
});
@@ -34,7 +42,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${sourceSans3.variable} antialiased`}>
<body className={`${archivo.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-archivo), 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-archivo), sans-serif;
}