removed geist
This commit is contained in:
@@ -10,16 +10,12 @@ import Footer from "@/components/layout/Footer";
|
||||
import { Toaster } from "@/components/ui/sonner";
|
||||
import { Providers } from "@/context/Provider";
|
||||
import AuthWrapper from "@/context/AuthWrapper";
|
||||
import localFont from 'next/font/local'
|
||||
|
||||
const geistSans = Geist({
|
||||
variable: "--font-geist-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const geistSans = localFont({
|
||||
src: '../../public/fonts/GeistVF.woff2',
|
||||
variable: '--font-geist-sans',
|
||||
})
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "SmartElectronics",
|
||||
@@ -52,7 +48,7 @@ export default async function RootLayout({ children, params }: Props) {
|
||||
return (
|
||||
<html lang={locale} suppressHydrationWarning>
|
||||
<body
|
||||
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
|
||||
className={`${geistSans.variable} antialiased`}
|
||||
>
|
||||
<Providers>
|
||||
<NextIntlClientProvider locale={locale} messages={messages}>
|
||||
|
||||
Reference in New Issue
Block a user