You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
520 B
23 lines
520 B
import type { Metadata } from "next";
|
|
import "./globals.css";
|
|
import { Toast } from "@/components/Toast";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Node Banana - AI Image Workflow",
|
|
description: "Node-based image annotation and generation workflow using Nano Banana Pro",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en">
|
|
<body className="antialiased">
|
|
{children}
|
|
<Toast />
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|
|
|