feat: complete core 5 elements and risk layer architecture

This commit is contained in:
Antigravity Agent
2026-06-06 21:11:16 +02:00
commit 96f7643f8a
29 changed files with 12336 additions and 0 deletions

33
app/layout.tsx Normal file
View File

@@ -0,0 +1,33 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "QuantSandbox Ökonometrie - KI-gestützte Investment-Sandbox",
description: "Sophisticated econometric and statistical investment analysis dashboard, including GJR-GARCH, EWMA volatility modeling, insider whale trackers, and Bayesian online learning.",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html
lang="en"
className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`}
>
<body className="min-h-full flex flex-col">{children}</body>
</html>
);
}