Switched to local fonts

This commit is contained in:
Jack Mechem 2026-03-28 18:23:52 -07:00
parent 2bc4311479
commit 8d06749627
5 changed files with 77 additions and 44 deletions

View file

@ -2,18 +2,6 @@ import type { Metadata } from "next";
import { DM_Sans, Playfair_Display } from "next/font/google"; // Import your specific fonts
import "./globals.css";
const dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
display: "swap",
});
const playfair = Playfair_Display({
variable: "--font-playfair",
subsets: ["latin"],
display: "swap",
});
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
@ -28,7 +16,7 @@ export default function RootLayout({
<html
lang="en"
// Add the new font variables here
className={`${dmSans.variable} ${playfair.variable} h-full antialiased`}
className={`h-full antialiased`}
>
<body className="min-h-full h-full flex flex-col">{children}</body>
</html>