import type { Metadata } from "next"; export const metadata: Metadata = { title: "Try honeyDue — Free Demo", description: "Try honeyDue without an account. Manage tasks, contractors, and documents in a live demo.", openGraph: { title: "Try honeyDue — Free Demo", description: "Try honeyDue without an account. Manage tasks, contractors, and documents in a live demo.", type: "website", }, }; export default function DemoLayout({ children, }: { children: React.ReactNode; }) { return children; }