/[sudobot]/trunk/docs/app/layout.tsx
ViewVC logotype

Annotation of /trunk/docs/app/layout.tsx

Parent Directory Parent Directory | Revision Log Revision Log


Revision 575 - (hide annotations)
Mon Jul 29 17:59:26 2024 UTC (8 months ago) by rakinar2
File MIME type: application/typescript
File size: 971 byte(s)
chore: add trunk
1 rakinar2 575 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