const price1: Price.Price1 = {
    title: "Title",
    cents: 99,
    toogle: {
        status: true,
        label: "anual",
        label2: "mensual",
        labelClass: "mx-2 font-semibold text-slate-700",
        className: "border border-slate-300 rounded py-2 px-3",
    },
    price: [
        {
            title: "Title1",
            className: "border border-slate-300",
            description: "Esta es la descrition del Producto",
            button: {
                name: "Contactar",
                id: "id",
                href: "#",
                rel: "tag",
                ariaLabel: "aria label",
                target: "_self",
                type: "button",
            },
            amount: { month: 300, year: 2000 },
            note: "Esto es una nota",
            benefits: [
                "benefit 1 benefit 1 benefit 1 benefit 1 benefit 1 benefit 1",
                "benefit 2",
                "benefit 1 benefit 1 benefit 1 benefit 1 benefit 1 benefit 1",
            ],
        },
        {
            title: "Title",
            popular: {
                text: "Más vendido",
                className: "bg-blue-700 shadow-blue-400 shadow",
            },
            description: "Esta es la descrition del Producto",
            className: "bg-blue-50",
            button: {
                name: "Contactar",
                id: "id",
                href: "#",
                rel: "tag",
                ariaLabel: "aria label",
                target: "_self",
                type: "button",
            },
            amount: { month: 400, year: 3000 },
            note: "Esto es una nota",
            benefits: [
                "benefit 1 benefit 1 benefit 1 benefit 1 benefit 1 benefit 1",
                "benefit 1 benefit 1 benefit 1 benefit 1 benefit 1 benefit 1",
            ],
        },
        {
            title: "Title2",
            className: "border border-slate-300",
            description: "Esta es la descrition del Producto",
            button: {
                name: "Contactar",
                id: "id",
                href: "#",
                rel: "tag",
                ariaLabel: "aria label",
                target: "_self",
                type: "button",
            },
            amount: { month: 500, year: 4000 },
            note: "Esto es una nota",
            benefits: [
                "benefit 1 benefit 1 benefit 1 benefit 1 benefit 1 benefit 1",
                "benefit 2",
                "benefit 1 benefit 1 benefit 1 benefit 1 benefit 1 benefit 1",
            ],
        },
    ],
};

export default { price1 };
