import { StoreProvider } from "@/store" import type { Metadata, Viewport } from "next" import "./global.css" import { Toaster } from "@/components/ui/sonner" import { Roboto } from "next/font/google" import { cn } from "@/lib/utils" const roboto = Roboto({ subsets: ["latin"], weight: ["400", "700"], variable: "--font-roboto", display: "swap", }) export const metadata: Metadata = { title: "Real Agent", description: "", appleWebApp: { capable: true, statusBarStyle: "black", }, } export const viewport: Viewport = { width: "device-width", initialScale: 1, minimumScale: 1, maximumScale: 1, userScalable: false, viewportFit: "cover", } export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode }>) { return ( {/* */} {children} {/* */} ) }