Update theme fonts

This commit is contained in:
2026-05-09 18:35:30 +00:00
parent d7cb05b7da
commit 857c4bd89a

View File

@@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Poppins } from "next/font/google";
import { Raleway } from "next/font/google";
@@ -20,10 +21,10 @@ export const metadata: Metadata = {
},
};
const poppins = Poppins({
variable: "--font-poppins",
const raleway = Raleway({
variable: "--font-raleway",
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export default function RootLayout({
@@ -34,7 +35,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${poppins.variable} antialiased`}>
<body className={`${raleway.variable} antialiased`}>
<Tag />
{children}
<script