mirror of
https://github.com/kjanat/livedash-node.git
synced 2026-01-16 14:12:10 +01:00
Introduce company settings, user management, and layout components Implement session-based Company and User pages for admin access Integrate chart components for dynamic data visualization Add Sidebar for modular navigation Revamp global styles with Tailwind CSS Enhances user experience and administrative control
29 lines
745 B
TypeScript
29 lines
745 B
TypeScript
// Main app layout with basic global style
|
|
import "./globals.css";
|
|
import { ReactNode } from "react";
|
|
import { Providers } from "./providers";
|
|
|
|
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">
|
|
<body className="bg-gray-100 min-h-screen font-sans">
|
|
<Providers>{children}</Providers>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|