forked from Txio-labs/txio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout.tsx
More file actions
29 lines (26 loc) · 849 Bytes
/
Copy pathlayout.tsx
File metadata and controls
29 lines (26 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import type { Metadata } from "next";
// System fonts used for build stability
import "./globals.css";
import { Providers } from "@/components/Providers";
const inter = { variable: "--font-inter" };
const spaceGrotesk = { variable: "--font-space-grotesk" };
const jetbrainsMono = { variable: "--font-jetbrains-mono" };
export const metadata: Metadata = {
title: "txio | Universal Web3 IDE",
description: "Universal Web3 IDE for the Sui ecosystem and beyond.",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" className="dark" suppressHydrationWarning>
<body
className={`${spaceGrotesk.variable} ${inter.variable} ${jetbrainsMono.variable} antialiased dot-grid`}
>
<Providers>{children}</Providers>
</body>
</html>
);
}