planning-fight/app/layout.tsx

20 lines
376 B
TypeScript
Raw Normal View History

2025-11-04 14:18:19 +00:00
import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: "Worker Presence Manager",
2025-11-04 14:18:19 +00:00
description: "Track worker presence with point system",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}