// data.jsx — shared content for Prexi site, palettes adapted to MAI

const BRAND_LOGOS = [
  { name: "Pazcare",     img: "assets/logos/pazcare.png",       h: 30 },
  { name: "GyanDhan",    img: "assets/logos/gyandhan.png",      h: 30 },
  { name: "Flutch",      img: "assets/logos/flutch.png",        h: 34 },
  { name: "Indorama",    img: "assets/logos/indorama.png",      h: 22 },
  { name: "Opal:Infinite", img: "assets/logos/opal-infinite.png", h: 26 },
  { name: "Fyers",       img: "assets/logos/fyers.png",         h: 32 },
];

// Hero copy variants — toggled via Tweaks
const HERO_COPY_VARIANTS = {
  workflow: {
    eyebrow: "Built for performance marketing",
    headlineLead: "Scale your Meta campaigns",
    headlineEm: "with AI agents",
    headlineTail: "",
    sub: "Prexi lets creative teams turn ideas into creatives real fast, create variations, and find winning patterns. At a speed traditional production can't touch.",
  },
  fatigue: {
    eyebrow: "Made for Meta performance",
    headlineLead: "Beat ad fatigue.",
    headlineEm: "More on-brand video,",
    headlineTail: "faster.",
    sub: "An AI agent that learns your workflow, generates the variants your auction is hungry for, and keeps the human in the director's chair.",
  },
  grind: {
    eyebrow: "Built for performance teams",
    headlineLead: "Performance video,",
    headlineEm: "without the",
    headlineTail: "production grind.",
    sub: "Prexi removes the slow part of the job: sourcing, editing, captioning, resizing. Your team spends its taste on the work that actually moves ROAS.",
  },
};

const NAV_LINKS = [
  { label: "Product",  href: "#how" },
  { label: "Pricing",  href: "pricing.html" },
  { label: "Team",     href: "team.html" },
  { label: "About",    href: "about.html" },
];

const FOOTER_GROUPS = [
  { title: "Product",   links: [{ label: "Pricing", href: "pricing.html" }] },
  { title: "Company",   links: [{ label: "About", href: "about.html" }, { label: "Team", href: "team.html" }] },
  { title: "Contact",   links: [{ label: "hello@prexi.ai", href: "mailto:hello@prexi.ai" }, { label: "Book a call", href: "book-a-call.html" }] },
];

Object.assign(window, {
  BRAND_LOGOS,
  HERO_COPY_VARIANTS,
  NAV_LINKS,
  FOOTER_GROUPS,
});
