feat(confidence-engine): add tester legal pages

This commit is contained in:
2026-09-10 06:18:28 +01:00
parent 96b47d16a3
commit 27ded883e5
10 changed files with 208 additions and 1 deletions
+4
View File
@@ -1,6 +1,7 @@
import "./globals.css";
import ThemeToggle from "@/components/theme-toggle";
import LogoutButton from "@/components/logout-button";
import LegalNavigation from "@/components/legal-navigation";
export const metadata = {
title: "Confidence Engine",
@@ -26,6 +27,9 @@ export default function RootLayout({ children }) {
</div>
</header>
{children}
<footer className="app-chrome border-t border-gray-200/80 px-6 py-5">
<LegalNavigation />
</footer>
</body>
</html>
);