import "../styles/globals.css"; import type { Metadata } from "next"; export const metadata: Metadata = { title: "Holiday Deal Finder", description: "Search multiple sites at once for the best dates and fares", }; export default function RootLayout({ children }: { children: React.ReactNode }) { return (

Holiday Deal Finder

Point it at a few destinations and a date range; it builds smart links and pulls curated deal posts.

{children}
) }