hfcron / src /app /layout.tsx
Ajitdoval's picture
Create src/app/layout.tsx
8b78d6b verified
Raw
History Blame Contribute Delete
602 Bytes
import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: "HF Cron Manager Pro",
description: "Advanced Hugging Face Spaces & Cron Job Manager",
manifest: "/manifest.json", // For PWA support later
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" className="dark">
<body className="antialiased flex flex-col min-h-screen">
<main className="flex-grow container mx-auto px-4 py-8">
{children}
</main>
</body>
</html>
);
}