From 14df39d077bb1369f6b344bfcf176514122cb7b7 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 15 Apr 2026 18:47:40 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c5b1108..c81879f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -7,17 +7,19 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Open_Sans } from "next/font/google"; +import { DM_Sans } from "next/font/google"; export const metadata: Metadata = { title: 'Personal Grid | Minimal Link-in-Bio & Portfolio', description: 'A clean, grid-based personal landing page designed for creators. Showcase your links, projects, and social presence in a minimal, high-impact layout.' }; -const inter = Inter({ - variable: "--font-inter", + +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); -const openSans = Open_Sans({ - variable: "--font-open-sans", +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); @@ -29,7 +31,7 @@ export default function RootLayout({ return ( - + {children}