font-unbounded and font-almarai
This commit is contained in:
@@ -7,6 +7,16 @@ import { Footer, Navbar } from "@/components/layout";
|
||||
import { NextIntlClientProvider } from "next-intl";
|
||||
import { getMessages } from "next-intl/server";
|
||||
|
||||
const geistSans = Geist({
|
||||
variable: "--font-geist-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "FireForce - Emergency Services",
|
||||
description:
|
||||
@@ -42,7 +52,9 @@ export default async function RootLayout({
|
||||
const messages: any = await getMessages();
|
||||
return (
|
||||
<html lang={locale} suppressHydrationWarning>
|
||||
<body className={`font-sans antialiased`}>
|
||||
<body
|
||||
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
|
||||
>
|
||||
<NextIntlClientProvider messages={messages} locale={locale}>
|
||||
<Navbar />
|
||||
{children}
|
||||
|
||||
Reference in New Issue
Block a user