33 lines
848 B
TypeScript
33 lines
848 B
TypeScript
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 (
|
|
<html lang="en">
|
|
<body className={cn("min-h-screen antialiased")}>
|
|
<ThemeProvider attribute="class" defaultTheme="system" enableSystem disableTransitionOnChange>
|
|
{children}
|
|
</ThemeProvider>
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|