export interface CareerItem {
  id: number;
  type: string;
  title: string;
  description: string;
  salary: string;
  location: string;
  animation: "fade-right" | "fade-left";
  href: string;
}

export const careers: CareerItem[] = [
  {
    id: 1,
    type: "Full time",
    title: "Senior Digital Marketer",
    description:
      "As a Senior Digital Marketer, I bring years of experience in driving growth through strategic planning, data-driven campaigns",
    salary: "$44-55.000 year",
    location: "New York",
    animation: "fade-right",
    href: "/career-details",
  },
  {
    id: 2,
    type: "Part time",
    title: "Product Designer",
    description:
      "As a Senior Digital Marketer, I bring years of experience in driving growth through strategic planning, data-driven campaigns",
    salary: "$44-55.000 year",
    location: "New York",
    animation: "fade-left",
    href: "/career-details",
  },
  {
    id: 3,
    type: "Part time",
    title: "Business Consultant",
    description:
      "As a Senior Digital Marketer, I bring years of experience in driving growth through strategic planning, data-driven campaigns",
    salary: "$44-55.000 year",
    location: "New York",
    animation: "fade-right",
    href: "/career-details",
  },
  {
    id: 4,
    type: "Full time",
    title: "Web Application Developer",
    description:
      "As a Senior Digital Marketer, I bring years of experience in driving growth through strategic planning, data-driven campaigns",
    salary: "$44-55.000 year",
    location: "New York",
    animation: "fade-left",
    href: "/career-details",
  },
  {
    id: 5,
    type: "Full time",
    title: "Sales Executive Manager",
    description:
      "As a Senior Digital Marketer, I bring years of experience in driving growth through strategic planning, data-driven campaigns",
    salary: "$44-55.000 year",
    location: "New York",
    animation: "fade-right",
    href: "/career-details",
  },
  {
    id: 6,
    type: "Part time",
    title: "Video Editors/Motion Designer",
    description:
      "As a Senior Digital Marketer, I bring years of experience in driving growth through strategic planning, data-driven campaigns",
    salary: "$44-55.000 year",
    location: "New York",
    animation: "fade-left",
    href: "/career-details",
  },
];
