mirror of
https://github.com/kjanat/livedash-node.git
synced 2026-01-16 11:12:11 +01:00
- Fix TopQuestionsChart with proper dark mode colors using CSS variables and shadcn/ui components - Enhance ResponseTimeDistribution with thicker bars (maxBarSize: 60) - Replace GeographicMap with dark/light mode compatible CartoDB tiles - Add custom text selection background color with primary theme color - Update all loading states to use proper CSS variables instead of hardcoded colors - Fix dashboard layout background to use bg-background instead of bg-gray-100
31 lines
870 B
TypeScript
31 lines
870 B
TypeScript
// Main app layout with basic global style
|
|
import "./globals.css";
|
|
import { ReactNode } from "react";
|
|
import { Providers } from "./providers";
|
|
import { Toaster } from "@/components/ui/sonner";
|
|
|
|
export const metadata = {
|
|
title: "LiveDash-Node",
|
|
description:
|
|
"Multi-tenant dashboard system for tracking chat session metrics",
|
|
icons: {
|
|
icon: [
|
|
{ url: "/favicon.ico", sizes: "32x32", type: "image/x-icon" },
|
|
{ url: "/favicon.svg", type: "image/svg+xml" },
|
|
],
|
|
apple: "/icon-192.svg",
|
|
},
|
|
manifest: "/manifest.json",
|
|
};
|
|
|
|
export default function RootLayout({ children }: { children: ReactNode }) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<body className="bg-background text-foreground min-h-screen font-sans antialiased">
|
|
<Providers>{children}</Providers>
|
|
<Toaster />
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|