15 Commits

Author SHA1 Message Date
ba961abdd1 Update theme fonts 2026-04-20 11:47:49 +00:00
605b5707a8 Update theme fonts 2026-04-20 11:47:48 +00:00
a208974b40 Update theme fonts 2026-04-20 11:47:40 +00:00
bdf4c7cfbe Update theme fonts 2026-04-20 11:47:40 +00:00
64fe3891b2 Update theme fonts 2026-04-20 11:47:26 +00:00
2176c0c5c0 Update theme fonts 2026-04-20 11:47:26 +00:00
87389e825c Update theme colors 2026-04-20 11:46:56 +00:00
14908f0769 Update theme colors 2026-04-20 11:46:52 +00:00
cb29c5d080 Update theme colors 2026-04-20 11:46:48 +00:00
e19fb052d0 Update theme colors 2026-04-20 11:46:44 +00:00
61b0c7e7d4 Update theme colors 2026-04-20 11:46:40 +00:00
09b6967ee1 Update theme colors 2026-04-20 11:46:35 +00:00
ef4aba4b70 Update theme colors 2026-04-20 11:46:30 +00:00
50e0e8e142 Update theme colors 2026-04-20 11:46:26 +00:00
c7a6de27bb Update theme colors 2026-04-20 11:46:17 +00:00
2 changed files with 11 additions and 5 deletions

View File

@@ -7,6 +7,9 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Nunito_Sans } from "next/font/google";
import { Public_Sans } from "next/font/google";
import { Montserrat } from "next/font/google";
import { Manrope } from "next/font/google";
@@ -19,8 +22,11 @@ export const metadata: Metadata = {
},
};
const nunitoSans = Nunito_Sans({
variable: "--font-nunito-sans",
const manrope = Manrope({
variable: "--font-manrope",
subsets: ["latin"],
});
@@ -32,7 +38,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${nunitoSans.variable} antialiased`}>
<body className={`${manrope.variable} antialiased`}>
<Tag />
{children}
<script

View File

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