export type BlogCategory = "All" | "Guides" | "Pricing" | "AI & Design";

export interface BlogPost {
  id: string;
  slug: string;
  cat: Exclude<BlogCategory, "All">;
  title: string;
  excerpt: string;
  metaTitle: string;
  metaDescription: string;
  targetKeyword: string;
  author: "team";
  date: string;
  dateISO: string;
  read: string;
  image: string;
  featured?: boolean;
  kicker: string;
}

export const AUTHORS = {
  team: {
    name: "The DesignShare Team",
    role: "Elegant IT Limited",
    initials: "DS",
  },
} as const;

export const CATEGORIES: BlogCategory[] = [
  "All",
  "Guides",
  "Pricing",
  "AI & Design",
];

export const POSTS: BlogPost[] = [
  {
    id: "unlimited-design-subscription-guide",
    slug: "unlimited-design-subscription-guide",
    cat: "Guides",
    title: "Unlimited Design Subscription: The Complete 2026 Guide",
    excerpt:
      "What an unlimited design subscription actually includes, what it costs in 2026, what the fine print means, and how to tell a good service from a bad one.",
    metaTitle:
      "Unlimited Design Subscription: How It Works and What It Costs (2026)",
    metaDescription:
      "What an unlimited design subscription actually includes, what it costs in 2026, what the fine print means, and how to tell a good service from a bad one.",
    targetKeyword: "unlimited design subscription",
    author: "team",
    date: "Jun 6, 2026",
    dateISO: "2026-06-06",
    read: "11 min",
    image: "/assets/blog/blog-1.jpg",
    featured: true,
    kicker: "The complete guide",
  },
  {
    id: "design-subscription-vs-hiring-designer-vs-agency",
    slug: "design-subscription-vs-hiring-designer-vs-agency",
    cat: "Pricing",
    title:
      "Design Subscription vs Hiring a Designer vs Agency: Real 2026 Cost Breakdown",
    excerpt:
      "Real 2026 numbers on what a design subscription, an in-house designer, a freelancer, and an agency actually cost, plus which one fits your startup stage.",
    metaTitle: "Design Subscription vs Hiring vs Agency: 2026 Cost Breakdown",
    metaDescription:
      "Real 2026 numbers: what a design subscription, in-house designer, freelancer, and agency actually cost — and which fits your startup stage.",
    targetKeyword: "design subscription vs hiring a designer",
    author: "team",
    date: "Jun 4, 2026",
    dateISO: "2026-06-04",
    read: "7 min",
    image: "/assets/blog/blog-2.jpg",
    kicker: "Cost breakdown",
  },
  {
    id: "figma-ai-agents-startup-design-2026",
    slug: "figma-ai-agents-startup-design-2026",
    cat: "AI & Design",
    title:
      "Figma's AI Agents Are Changing Startup Design: What Founders Should Do Before Config 2026",
    excerpt:
      "Figma's agentic AI is reshaping startup design before Config 2026. Here is what custom skills, MCP, and write-to-canvas mean, and what founders should do now.",
    metaTitle: "Figma AI Agents in 2026: What Startup Founders Need to Know",
    metaDescription:
      "Figma's agentic AI — custom skills, MCP, write-to-canvas — is reshaping startup design before Config 2026. What founders should do now.",
    targetKeyword: "figma ai agents",
    author: "team",
    date: "Jun 2, 2026",
    dateISO: "2026-06-02",
    read: "6 min",
    image: "/assets/blog/blog-3.jpg",
    kicker: "Industry shift",
  },
];

export const MARQUEE_ITEMS = [
  "Design subscriptions",
  "Startup design",
  "Figma AI",
  "Pricing breakdowns",
  "Design ops",
] as const;
