import type { Metadata } from "next"; import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; const geist = Geist({ variable: "--font-geist-sans", subsets: ["latin"], }); const geistMono = Geist_Mono({ variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { title: "Super Liquor Paihia | Local Bottle Shop Bay of Islands", description: "Great prices. Friendly service. Cold drinks ready to go. Your local bottle shop in Paihia, Bay of Islands. Open daily 10 AM - 9 PM."}; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return (
{children}