import Container from "@/components/container"; import ThemeProvider from "@/components/theme-provider"; import { ToastContainer } from "react-toastify"; import { Inter } from "next/font/google"; import "react-toastify/dist/ReactToastify.css"; import "./globals.css"; const inter = Inter({ subsets: ["latin"] }); export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( <> {children} ); }