import { z } from "zod" export const getBreadcrumbsSchema = z.array( z.object({ href: z.string().optional(), title: z.string(), }) )