fix font family
This commit is contained in:
@@ -1,14 +1,14 @@
|
||||
import type { Metadata, Viewport } from "next";
|
||||
import { Manrope } from "next/font/google";
|
||||
import { Lato } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { MotionProvider } from "@/components/layout/MotionProvider";
|
||||
import { PremiumNavbar } from "@/components/layout/PremiumNavbar";
|
||||
import { PremiumFooter } from "@/components/layout/PremiumFooter";
|
||||
|
||||
const manrope = Manrope({
|
||||
const lato = Lato({
|
||||
subsets: ["latin"],
|
||||
weight: ["400", "600", "700", "800"],
|
||||
variable: "--font-manrope",
|
||||
weight: ["100", "300", "400", "700", "900"],
|
||||
variable: "--font-lato",
|
||||
display: "swap",
|
||||
preload: true,
|
||||
});
|
||||
@@ -78,7 +78,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html
|
||||
lang="en"
|
||||
className={manrope.variable}
|
||||
className={lato.variable}
|
||||
data-scroll-behavior="smooth"
|
||||
suppressHydrationWarning
|
||||
>
|
||||
|
||||
Reference in New Issue
Block a user