export type PageContentJSON = {
  fr: {
    title: string;
    content: string;
  };
  en: {
    title: string;
    content: string;
  };
};