This commit is contained in:
urieljarethbusiness-cpu
2026-05-17 10:14:14 -06:00
parent d8773b2508
commit 64b3d15b90
61 changed files with 7612 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: "Knowledge Station",
description: "Procesa clases, documentos y transcripciones a Markdown.",
};
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="es" className="dark">
<body>{children}</body>
</html>
);
}