import "./globals.css"; import { NavbarRight } from "@/components/NavbarRight"; import type { Metadata } from "next"; import { Inter } from "next/font/google"; import { Toaster } from "sonner"; const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { title: "Comfy Deploy", description: "Generated by create next app", }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return (
Comfy Deploy {/*
*/}
{children}
); }