galt #1

Merged
bartha.gabor merged 19 commits from galt into main 2025-10-20 08:06:40 +02:00
Showing only changes of commit 232e553c02 - Show all commits

View File

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