mirror of
https://github.com/Dokploy/website.git
synced 2026-06-15 20:25:25 +02:00
- Updated various files to ensure consistent code formatting, including adjusting indentation and spacing. - Refactored components and utility functions for better readability and maintainability. - Removed unnecessary newlines and ensured consistent use of single quotes for strings across the codebase.
25 lines
629 B
TypeScript
25 lines
629 B
TypeScript
import "./global.css";
|
|
import { RootProvider } from "fumadocs-ui/provider";
|
|
import { Inter } from "next/font/google";
|
|
import type { ReactNode } from "react";
|
|
import { GoogleAnalytics } from "@next/third-parties/google";
|
|
const inter = Inter({
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
export default async function Layout({
|
|
children,
|
|
...rest
|
|
}: {
|
|
children: ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="en" className={inter.className} suppressHydrationWarning>
|
|
<body className="flex flex-col min-h-screen">
|
|
<GoogleAnalytics gaId="G-HZ71HG38HN" />
|
|
<RootProvider>{children}</RootProvider>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|