Mission Control - Tasks, Content, Calendar, Memory, Team, Office

This commit is contained in:
Neo
2026-02-18 21:32:53 +00:00
commit 1299db0840
7 changed files with 347 additions and 0 deletions

19
app/layout.tsx Normal file
View File

@@ -0,0 +1,19 @@
import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: "Mission Control - NodeCrew",
description: "Track tasks, content, calendar, memory, team, and office",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}