update font
This commit is contained in:
@@ -1,17 +1,17 @@
|
||||
import type { Metadata, Viewport } from "next";
|
||||
import { Hanken_Grotesk, Inter } from "next/font/google";
|
||||
import { Jost } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { Navbar } from "@/components/layout/Navbar";
|
||||
import { Footer } from "@/components/layout/Footer";
|
||||
|
||||
const hankenGrotesk = Hanken_Grotesk({
|
||||
const jost = Jost({
|
||||
subsets: ["latin"],
|
||||
weight: ["600", "700", "800"],
|
||||
weight: ["400", "600", "700", "800"],
|
||||
variable: "--font-display",
|
||||
display: "swap",
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
const jostBody = Jost({
|
||||
subsets: ["latin"],
|
||||
weight: ["400", "600", "700"],
|
||||
variable: "--font-body",
|
||||
@@ -83,7 +83,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html
|
||||
lang="en"
|
||||
className={`${hankenGrotesk.variable} ${inter.variable}`}
|
||||
className={`${jost.variable} ${jostBody.variable}`}
|
||||
suppressHydrationWarning
|
||||
>
|
||||
<head>
|
||||
|
||||
Reference in New Issue
Block a user