CoDEVX / app /layout.tsx
Tiger's Macbook Air
Build agentic PM demo app
3f76ff4
raw
history blame contribute delete
858 Bytes
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import { TooltipProvider } from "@/components/ui/tooltip";
import "./globals.css";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Agentic PM Demo",
description: "Agentic product management demo for IoT product planning.",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html
lang="en"
className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`}
>
<body className="min-h-full flex flex-col">
<TooltipProvider>{children}</TooltipProvider>
</body>
</html>
);
}