magricambi/src/app/layout.tsx
AV77web c1f2dfb44d
All checks were successful
Deploy to VPS / build (push) Successful in 39s
Deploy to VPS / deploy (push) Successful in 29s
modificata favicon.ico
2026-05-31 16:53:16 +02:00

34 lines
812 B
TypeScript

import type { Metadata } from "next";
import { Inter, JetBrains_Mono } from "next/font/google";
import "./globals.css";
/** Stesse variabili CSS di globals.css; Geist non è disponibile in next/font su Next 14. */
const geistSans = Inter({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = JetBrains_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "MagRicambi",
description: "Gestionale di magazzino",
icons: { icon: "/favicon.ico"}
};
export default async function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`}>
{children}
</body>
</html>
);
}