2025-11-04 14:18:19 +00:00
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import "./globals.css";
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
2025-11-19 12:34:08 +00:00
|
|
|
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>
|
|
|
|
|
);
|
|
|
|
|
}
|