Files
livedash-node/app/layout.tsx
Kaj Kowalski 7479f3ec97 Adds favicon and manifest
Adds favicon and web manifest to improve the app's installability and appearance as a Progressive Web App (PWA).

Also adds `.gitignore` entries for the parser output directories.
2025-05-21 22:53:43 +02:00

31 lines
811 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>
<div className="max-w-5xl mx-auto py-8">{children}</div>
</Providers>
</body>
</html>
);
}