muller-reporting-sys/app/layout.tsx
2025-11-12 22:21:35 +03:00

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>
)
}