Remove Geist and GeistMono font

This commit is contained in:
2025-10-17 12:42:38 +02:00
parent d936175de8
commit 232e553c02

View File

@@ -1,17 +1,5 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
export const metadata = {
title: "FeedMe",
description: "Food ordering app",
@@ -28,9 +16,7 @@ export default function RootLayout({
}>) {
return (
<html lang="en">
<body
className={`relative text-white ${geistSans.className} ${geistMono.className}`}
>
<body className={`relative text-white`}>
<div className="app-background" />
<div className="relative z-10 h-screen overflow-y-auto">{children}</div>
</body>