From 70fe3fd6e864f630e1ad905461b1ba680d973752 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 6 May 2026 00:06:02 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index da2ff55..5583a34 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Roboto } from "next/font/google"; +import { Press_Start_2P } from "next/font/google"; @@ -20,11 +21,8 @@ export const metadata: Metadata = { }, }; -const roboto = Roboto({ - variable: "--font-roboto", - subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], -}); + +const pressStart = Press_Start_2P({ variable: "--font-pixel", subsets: ["latin"], weight: ["400"] }); export default function RootLayout({ children, @@ -34,7 +32,7 @@ export default function RootLayout({ return ( - + {children}