import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; import ClientLayout from "./ClientLayout"; const geistSans = Geist({ variable: "--font-geist-sans", subsets: ["latin"], }); const geistMono = Geist_Mono({ variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata = { title: "Sweet Home", description: "Discover premium furniture and home decor", icons: { icon: [{ url: "/logo.png", type: "image/png" }], shortcut: [{ url: "/logo.png", type: "image/png" }], apple: [{ url: "/logo.png", type: "image/png" }], }, }; export default function Layout({ children }) { return ( {children} ); }