import { z } from "zod";

export const pageContentSchema = z.object({
  fr: z.object({
    title: z.string(),
    content: z.string(),
  }),
  en: z.object({
    title: z.string(),
    content: z.string(),
  }),
});