import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; import { Providers } from "@/components/layout/Providers"; import { Toaster } from "@/components/ui/toaster"; const inter = Inter({ subsets: ["latin"], variable: "--font-sans" }); export const metadata: Metadata = { title: { template: "%s | FeedBack", default: "FeedBack — VFX Review Platform", }, description: "Frame-accurate review and approval for VFX and animation studios.", }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return ( {children} ); }