import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Nunito_Sans } from "next/font/google"; export const metadata: Metadata = { title: 'Flying Horse Cafe - Downtown Dallas Specialty Coffee', description: 'Award-winning specialty coffee shop in downtown Dallas. Cozy atmosphere, work-friendly seating, free wifi, fresh pastries. Open daily at 1401 Commerce St.', }; const nunitoSans = Nunito_Sans({ variable: "--font-nunito-sans", subsets: ["latin"], }); export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}