/**
 * Embed layout — minimal chrome for trip embeds hosted on third-party sites.
 *
 * Bypasses the marketing site header/footer/skip-link from the root layout
 * so the iframe shows only the trip card. CSP / frame-ancestors are handled
 * via `next.config.ts` `headers()` keyed on `/embed/:path*`.
 */

import type { Metadata } from "next";

export const metadata: Metadata = {
  robots: { index: false, follow: false },
};

export default function EmbedLayout({ children }: { children: React.ReactNode }) {
  return (
    <div className="min-h-screen bg-background text-foreground">{children}</div>
  );
}
