Jobins / dashboard /web /app /layout.js
Abhisingh-18's picture
Mirror of github.com/Abhisingh18/Jobins
b6c100d verified
Raw
History Blame Contribute Delete
301 Bytes
import "./globals.css";
export const metadata = {
title: "Agent Control Center",
description: "Live tracking for the resource-constrained agent",
};
export default function RootLayout({ children }) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}