export const NAV_ITEMS = [
  { href: "/dashboard", label: "My Projects", icon: "layout-dashboard" },
  { href: "/my-project?edit=active", label: "My Project", icon: "folder" },
  { href: "/brand-profile", label: "Brand Profile", icon: "sparkles" },
  { href: "/posting-context", label: "Posting Context", icon: "message-square" },
  { href: "/smart-schedule", label: "Smart Schedule", icon: "calendar-clock" },
  { href: "/automation", label: "Automation", icon: "zap" },
  { href: "/connected-accounts", label: "Connected Accounts", icon: "link" },
  { href: "/generated-posts", label: "Post Review", icon: "file-text" },
  { href: "/live-generation", label: "Live Generation", icon: "star" },
] as const;

/** Hidden until context-driven KB is ready */
export const HIDDEN_NAV_ITEMS = [
  { href: "/knowledge-base", label: "Knowledge Base", icon: "book-open" },
] as const;

export const ONBOARDING_STEPS = [
  { step: 1, label: "Project & Markets", description: "Workspace and target countries" },
  { step: 2, label: "Brand Profile", description: "Identity and logo" },
  { step: 3, label: "Posting Context", description: "Content sequence" },
  { step: 4, label: "Smart Schedule", description: "Posts per day" },
  { step: 5, label: "Automation", description: "Publishing rules" },
  { step: 6, label: "Connected Accounts", description: "Social platforms" },
  { step: 7, label: "Live Generation", description: "AI publish flow" },
] as const;

export const INDUSTRIES = [
  "Technology / Software",
  "Marketing / Agency",
  "Healthcare",
  "Finance",
  "Retail",
  "Education",
  "Salon / Beauty",
  "B2B Communications / eFax",
  "Other",
] as const;

/** Industry select options including blank for URL-first onboarding. */
export const INDUSTRY_OPTIONS = ["", ...INDUSTRIES] as const;

export const TIMEZONES = [
  "America/New_York (EST)",
  "America/Chicago (CST)",
  "America/Denver (MST)",
  "America/Los_Angeles (PST)",
  "Europe/London (GMT)",
  "Asia/Kolkata (IST)",
] as const;

export const BRAND_VOICES = [
  "Professional",
  "Friendly",
  "Bold",
  "Educational",
  "Playful",
] as const;

export const TARGET_COUNTRIES = [
  { code: "US", name: "United States", flag: "🇺🇸" },
  { code: "GB", name: "United Kingdom", flag: "🇬🇧" },
  { code: "IN", name: "India", flag: "🇮🇳" },
  { code: "CA", name: "Canada", flag: "🇨🇦" },
] as const;
