import type { Metadata } from 'next' import { Cormorant_Garamond, Mulish } from 'next/font/google' import './globals.css' import Nav from '@/components/ui/Nav' import Footer from '@/components/ui/Footer' const cormorant = Cormorant_Garamond({ subsets: ['latin'], weight: ['400', '500', '600'], style: ['normal', 'italic'], variable: '--font-cormorant', }) const mulish = Mulish({ subsets: ['latin'], weight: ['300', '400', '500', '600', '700'], variable: '--font-mulish', }) export const metadata: Metadata = { title: 'HyggeCraftery – Leben. Langsam. Schön.', description: 'Handgemachte Stücke und sanfte Rituale für ein Zuhause, das zur Ruhe einlädt. Skandinavisches Lifestyle-Handwerk aus Schweden.', metadataBase: new URL('https://hyggecraftery.com'), } export default function RootLayout({ children, }: { children: React.ReactNode }) { return (
{/* Noise texture overlay */}