import farm from "@/assets/blog-farm.jpg";
import hands from "@/assets/blog-hands.jpg";
import market from "@/assets/blog-market.jpg";

export type Post = {
  slug: string;
  title: string;
  excerpt: string;
  image: string;
  date: string;
  readMins: number;
  category: string;
};

export const posts: Post[] = [
  {
    slug: "growing-tomatoes-rwanda",
    title: "Five lessons from growing tomatoes in Rwanda's volcanic soils",
    excerpt:
      "What Musanze farmers can teach the rest of East Africa about resilience, water, and yield.",
    image: farm,
    date: "Apr 18, 2026",
    readMins: 6,
    category: "Farming",
  },
  {
    slug: "from-field-to-kigali",
    title: "From field to Kigali: how a tomato gets to your kitchen",
    excerpt:
      "Inside the cold-chain logistics keeping highland produce fresh across the country.",
    image: market,
    date: "Apr 09, 2026",
    readMins: 5,
    category: "Logistics",
  },
  {
    slug: "ejo-heza-farmers",
    title: "Ejo Heza, explained — and why every farmer should enroll",
    excerpt:
      "A practical guide to long-term savings for Rwanda's smallholder agribusinesses.",
    image: hands,
    date: "Mar 28, 2026",
    readMins: 4,
    category: "Impact",
  },
];
