mirror of
https://github.com/mblanke/holiday-travel-app.git
synced 2026-03-01 13:30:20 -05:00
Initial commit: Holiday Travel App with resort comparison, trip management, and multi-provider search
This commit is contained in:
26
app/layout.tsx
Normal file
26
app/layout.tsx
Normal file
@@ -0,0 +1,26 @@
|
||||
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 (
|
||||
<html lang="en">
|
||||
<body>
|
||||
<div className="container max-w-6xl py-6 md:py-10">
|
||||
<header className="mb-6 md:mb-10">
|
||||
<h1 className="text-2xl md:text-3xl font-extrabold tracking-tight">Holiday Deal Finder</h1>
|
||||
<p className="opacity-80">Point it at a few destinations and a date range; it builds smart links and pulls curated deal posts.</p>
|
||||
</header>
|
||||
{children}
|
||||
<footer className="mt-10 text-sm opacity-70">
|
||||
Built for your Holiday Travel App workflow. No scraping of paywalled content; links open official search UIs.
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user