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}