update font

This commit is contained in:
2026-07-03 11:14:54 +05:30
parent 843182d393
commit 205f8b989a
4 changed files with 9 additions and 9 deletions

View File

@@ -1,14 +1,14 @@
import type { Metadata, Viewport } from "next";
import { Jost } from "next/font/google";
import { Manrope } 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 jost = Jost({
const manrope = Manrope({
subsets: ["latin"],
weight: ["400", "600", "700", "800"],
variable: "--font-jost",
variable: "--font-manrope",
display: "swap",
preload: true,
});
@@ -78,7 +78,7 @@ export default function RootLayout({
return (
<html
lang="en"
className={jost.variable}
className={manrope.variable}
data-scroll-behavior="smooth"
suppressHydrationWarning
>