removed geist

This commit is contained in:
Jelaletdin12
2026-03-09 21:28:02 +05:00
parent 63d6c7fb0e
commit c9de9d25bd
2 changed files with 6 additions and 10 deletions

View File

@@ -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}>

Binary file not shown.