import { DemoAgendaShell } from "@/components/demo/demo-agenda-shell" import type { Metadata } from "next" import { ULTICAL_APP_NAME, suitePageMetadata } from "@/lib/suite/page-metadata" export const metadata: Metadata = { ...suitePageMetadata({ app: "agenda", title: `Démo ${ULTICAL_APP_NAME}`, absoluteTitle: true, description: `Essayez ${ULTICAL_APP_NAME} sans compte — démo interactive, zéro rétention.`, }), robots: { index: false }, } export default function DemoAgendaLayout({ children, }: { children: React.ReactNode }) { return {children} }