export type SitemapNode = {
  id:string;
  title: string;
  slug: string;
  children?: SitemapNode[];
};
