diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 09edce5..78d5328 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -3,6 +3,7 @@ import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; +import { Open_Sans } from "next/font/google"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], @@ -27,6 +28,15 @@ export const metadata: Metadata = { } }; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); +const openSans = Open_Sans({ + variable: "--font-open-sans", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -35,9 +45,7 @@ export default function RootLayout({ return ( - + {children} diff --git a/src/app/styles/base.css b/src/app/styles/base.css index 34aea07..52de42f 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -11,7 +11,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-inter), sans-serif; + font-family: var(--font-open-sans), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none;