export type CountdownPartKey = "days" | "hours" | "minutes" | "seconds";

export type CountdownPart = {
  key: CountdownPartKey;
  label: string;
};

export const comingSoonContent = {
  lead: "We are",
  title: "Coming",
  titleSuffix: " Soon",
  description:
    "We're working hard behind the scenes to bring you a brand new experience.",
  countdownTargetIso: "2028-01-01T00:00:00",
  notify: {
    emailPlaceholder: "Enter email",
    buttonText: "Notify me",
    arrowIcon: {
      src: "/assets/images/icon/arrow.svg",
      alt: "Arrow Icon",
      width: 12,
      height: 12,
    },
  },
};

export const countdownParts: CountdownPart[] = [
  { key: "days", label: "Days" },
  { key: "hours", label: "Hours" },
  { key: "minutes", label: "Minutes" },
  { key: "seconds", label: "Seconds" },
];
