/[sudobot]/branches/8.x/docs/app/layout.tsx
ViewVC logotype

Contents of /branches/8.x/docs/app/layout.tsx

Parent Directory Parent Directory | Revision Log Revision Log


Revision 577 - (show annotations)
Mon Jul 29 18:52:37 2024 UTC (8 months ago) by rakinar2
File MIME type: application/typescript
File size: 971 byte(s)
chore: add old version archive branches (2.x to 9.x-dev)
1 import Navbar from "@/components/Navbar/Navbar";
2 import Progress from "@/components/Navigation/Progress";
3 import type { Metadata, Viewport } from "next";
4 import { Inter } from "next/font/google";
5 import { PropsWithChildren } from "react";
6 import "../styles/globals.css";
7 import Providers from "./providers";
8
9 const inter = Inter({ subsets: ["latin"] });
10
11 export const metadata: Metadata = {
12 title: "SudoBot Documentation",
13 description: "A guide to get you started with SudoBot!",
14 };
15
16 export const viewport: Viewport = {
17 colorScheme: "dark",
18 initialScale: 1,
19 themeColor: "#000",
20 };
21
22 export default function RootLayout({ children }: PropsWithChildren) {
23 return (
24 <html lang="en" className="dark">
25 <body className={inter.className}>
26 <Providers>
27 <Navbar />
28 <Progress />
29 {children}
30 </Providers>
31 </body>
32 </html>
33 );
34 }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26