This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
import type { Metadata, Viewport } from "next";
|
||||
import "./globals.css";
|
||||
import RootProviders from "@/components/RootProviders";
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Andris Car Service",
|
||||
description: "Order management dashboard for Andris car service",
|
||||
};
|
||||
|
||||
export const viewport: Viewport = {
|
||||
width: "device-width",
|
||||
initialScale: 1,
|
||||
maximumScale: 1,
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<body className="bg-steel-100 text-steel-900 dark:bg-steel-900 dark:text-steel-100 min-h-screen transition-colors">
|
||||
<RootProviders>{children}</RootProviders>
|
||||
</body>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user