/** * Built-in Meta handle for managing document metadata across route segments. * * Provides automatic deduplication: later routes override earlier ones * for the same meta key (title, name, property, etc.) * * @example * ```tsx * // In route handler * route("product/:id", (ctx) => { * const meta = ctx.use(Meta); * meta({ title: "Product Details" }); * meta({ name: "description", content: "..." }); * meta({ property: "og:title", content: "..." }); * }); * * // In layout (renders the collected meta tags) * function RootLayout() { * return ( * *
*