export interface NavLink {
  title: string;
  href: string;
}

export interface MegaMenuItem {
  title: string;
  href: string;
  description?: string;
}

export interface ReportsMegaMenu {
  industries: NavLink[];
  types: NavLink[];
  featured: NavLink[];
}

export const siteConfig = {
  name: "Meticulous Research",
  shortName: "Meticulous",
  description: "Market intelligence and analytical reports on global consumer trends, statistics, and industry definitions.",
  url: "https://meticulousresearch.com",
  ogImage: "https://meticulousresearch.com/og.jpg",
  links: {
    twitter: "https://twitter.com/meticulousres",
    linkedin: "https://linkedin.com/company/meticulous-research",
  },
  contact: {
    email: "intelligence@meticulousresearch.com",
    phone: "+1-800-METICULOUS",
  },
  
  // Navigation config data
  nav: {
    primary: [
      { title: "Reports", href: "/reports", isTrigger: true },
      { title: "Custom Research", href: "/custom-research", isTrigger: false },
      { title: "Insights", href: "/insights", isTrigger: true },
      { title: "DataOne", href: "/dataone", isTrigger: false },
      { title: "Why Meticulous", href: "/why-meticulous", isTrigger: false },
      { title: "Company", href: "/company", isTrigger: false },
    ],
    
    reportsMegaMenu: {
      industries: [
        { title: "Technology", href: "/industries/technology" },
        { title: "Healthcare", href: "/industries/healthcare" },
        { title: "Energy & Power", href: "/industries/energy-power" },
        { title: "Consumer Goods", href: "/industries/consumer-goods" },
        { title: "Financial Services", href: "/industries/financial-services" },
        { title: "Automotive", href: "/industries/automotive" },
        { title: "Chemicals & Materials", href: "/industries/chemicals-materials" },
        { title: "Food & Beverages", href: "/industries/food-beverages" },
        { title: "Telecom", href: "/industries/telecom" },
      ],
      types: [
        { title: "Market Sizing", href: "/reports?type=market-sizing" },
        { title: "Competitive Analysis", href: "/reports?type=competitive-analysis" },
        { title: "Opportunity Analysis", href: "/reports?type=opportunity-analysis" },
        { title: "Tracker Reports", href: "/reports?type=tracker-reports" },
      ],
      featured: [
        { title: "Protein Bar Market 2026-2036", href: "/reports/protein-bar-market" },
        { title: "Green Hydrogen Market 2030", href: "/reports/hydrogen-technologies-market" },
        { title: "Al Video Generation CAGR Insights", href: "/reports/ai-video-generation-market" },
      ],
    } as ReportsMegaMenu,

    insightsMegaMenu: [
      { title: "Statistics", href: "/insights/statistics", description: "Citable market size and CAGR stats" },
      { title: "Definitions", href: "/insights/definitions/all", description: "Authoritative terms and definitions library" },
      { title: "Trends", href: "/insights/trends", description: "Evergreen industry trend hubs" },
      { title: "Analyst Perspectives", href: "/insights/perspectives", description: "Signed POV pieces and human judgment" },
      { title: "Industry Hubs", href: "/industries", description: "Evergreen industry knowledge hubs" },
      { title: "Blog & Press", href: "/insights/blog/all", description: "Press releases and case studies" },
    ] as MegaMenuItem[],

    footer: {
      company: [
        { title: "About", href: "/why-meticulous" },
        { title: "Careers", href: "/company/careers" },
        { title: "Contact", href: "/company/contact" },
        { title: "Press", href: "/company/press" },
      ],
      legal: [
        { title: "Privacy Policy", href: "/legal/privacy" },
        { title: "Terms of Service", href: "/legal/terms" },
      ],
    },
  },
};

export type SiteConfig = typeof siteConfig;
