Update theme fonts

This commit is contained in:
2026-02-27 12:20:50 +00:00
parent bbd54de8b6
commit 88569594f3

View File

@@ -5,6 +5,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { Libre_Baskerville } from "next/font/google";
import { Inter } from "next/font/google";
import { DM_Sans } from "next/font/google";
export const metadata: Metadata = {
@@ -28,10 +29,10 @@ export const metadata: Metadata = {
}
};
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
const dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
variable: "--font-inter",
@@ -46,7 +47,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
<body className={`${dmSans.variable} ${inter.variable} antialiased`}>
<Tag />
{children}