-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathlayout.js
More file actions
26 lines (22 loc) · 697 Bytes
/
Copy pathlayout.js
File metadata and controls
26 lines (22 loc) · 697 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
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import Provider from "./provider";
import ConvexClientProvider from "./ConvexClientProvider";
export const metadata = {
title: "AI Powered Website Builder",
description: "Transform your wildest ideas into production-ready code with AI-powered assistance",
viewport: "width=device-width, initial-scale=1, maximum-scale=1",
};
export default function RootLayout({ children }) {
return (
<html lang="en" suppressHydrationWarning >
<body>
<ConvexClientProvider>
<Provider>
{children}
</Provider>
</ConvexClientProvider>
</body>
</html>
);
}