diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 76f5a5a..ac08b08 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,14 +1,9 @@ import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); - const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); @@ -26,7 +21,7 @@ export default function RootLayout({ {children} diff --git a/src/app/styles/base.css b/src/app/styles/base.css index d97fa01..34aea07 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-mulish), sans-serif; + font-family: var(--font-inter), sans-serif; }