import type React from "react" import { ThemeProvider } from "@/components/theme-provider" import type { Metadata } from "next" import { cn } from "@/lib/utils" import "./globals.css" export const metadata: Metadata = { title: "Aunty Sparkles", description: "Whimsical upcycled treasures and handmade creations", icons: { icon: "/images/logo-black-white.png", shortcut: "/images/logo-black-white.png", apple: "/images/logo-black-white.png", }, generator: 'v0.app' } export default function RootLayout({ children, }: { children: React.ReactNode }) { return (