17 lines
364 B
React
17 lines
364 B
React
import "./globals.css";
|
|
|
|
export const metadata = {
|
|
title: "Confidence Engine",
|
|
description: "Experimental evidence-based situation reconstruction prototype",
|
|
};
|
|
|
|
export default function RootLayout({ children }) {
|
|
return (
|
|
<html lang="en">
|
|
<body className="min-h-screen bg-gray-50 text-gray-900">
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|