Files
copilotkit__copilotkit/examples/canvas/gemini/app/layout.tsx
Jordan Ritter fd34bbfbf6 style: format all example files with prettier
Run prettier on ~1,865 files across examples/ to match the monorepo's
formatting standards. These files were imported as-is from standalone
repos that used different prettier configs.
2026-03-12 13:06:04 -07:00

33 lines
809 B
TypeScript

import type React from "react";
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
import { CopilotKit } from "@copilotkit/react-core";
import { LayoutProvider } from "./contexts/LayoutContext";
import Wrapper from "./wrapper";
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Open Gemini Canvas",
description:
"Powered by Google's most advanced AI models for generating LinkedIn and X posts",
generator: "v0.dev",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<LayoutProvider>
<Wrapper>
<body className={inter.className}>{children}</body>
</Wrapper>
</LayoutProvider>
</html>
);
}