27 lines
519 B
TypeScript
27 lines
519 B
TypeScript
import type { Metadata } from "next"
|
|
import { Geist } from "next/font/google"
|
|
import "./globals.css"
|
|
|
|
const geist = Geist({
|
|
subsets: ["latin"],
|
|
})
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Müller Production System",
|
|
description: "Bottle production management system",
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode
|
|
}>) {
|
|
return (
|
|
<html lang="en">
|
|
<body className={`${geist.className} antialiased`}>
|
|
{children}
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|