-
Notifications
You must be signed in to change notification settings - Fork 140
Expand file tree
/
Copy pathlayout.tsx
More file actions
28 lines (26 loc) · 995 Bytes
/
layout.tsx
File metadata and controls
28 lines (26 loc) · 995 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
"use client";
import "./globals.css";
import { ThemeProvider } from "@/hooks/use-theme";
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>OpenGenerativeUI Notebook</title>
<link
rel="icon"
href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>📓</text></svg>"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossOrigin="anonymous" />
<link
href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
</head>
<body className="antialiased">
<ThemeProvider>{children}</ThemeProvider>
</body>
</html>
);
}