galt #1
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user