export interface AwardItem {
    title: string;
    subtitle: string;
    image: string;
    type: string;
}

export const awards: AwardItem[] = [
    {
        title: "Product Award for Roofing Category",
        subtitle: "Architect Exhibition 2018",
        image: "/images/award1.webp",
        type: "Award"
    },
    {
        title: "The Best Stall Award",
        subtitle: "Kedella Living in Style Exhibition 2018",
        image: "/images/award2.webp",
        type: "Award"
    },
    {
        title: "The Best Product Award",
        subtitle: "Kedella Living in Style Exhibition 2017",
        image: "/images/award3.webp",
        type: "Award"
    },
    {
        title: "ISO 9001:2015",
        subtitle: "Quality Management System Certification",
        image: "/images/certificate1.webp",
        type: "Certificate"
    },
    {
        title: "Material Identification Test",
        subtitle: "ITI Test Report No: CTS 1704227",
        image: "/images/certificate2.webp",
        type: "Certificate"
    },
    {
        title: "Relative Density Test",
        subtitle: "ITI Test Report No: CTS 1704227",
        image: "/images/certificate3.webp",
        type: "Certificate"
    },
    {
        title: "Water Absorption Test",
        subtitle: "ITI Test Report No: CTS 1704227",
        image: "/images/certificate4.webp",
        type: "Certificate"
    },
    {
        title: "Flexural Strength Test",
        subtitle: "ITI Test Report No: CTS 1704227",
        image: "/images/certificate5.webp",
        type: "Certificate"
    },
    {
        title: "Corrosion Resistance Test",
        subtitle: "ITI Test Report No: CTS 1704227",
        image: "/images/certificate6.webp",
        type: "Certificate"
    },
    {
        title: "Anti-Flaming Test",
        subtitle: "ITI Test Report No: CTS 1704227",
        image: "/images/certificate7.webp",
        type: "Certificate"
    },
    {
        title: "Tensile Strength Test",
        subtitle: "ITI Test Report No: CTS 1709349 Part I",
        image: "/images/certificate8.webp",
        type: "Certificate"
    },
    {
        title: "Chemical Resistance Test",
        subtitle: "ITI Test Report No: CTS 1709349 Part I",
        image: "/images/certificate9.webp",
        type: "Certificate"
    },
    {
        title: "High-Temperature Resistance Test",
        subtitle: "ITI Test Report No: CTS 1709349 Part I",
        image: "/images/certificate10.webp",
        type: "Certificate"
    },
    {
        title: "Low-Temperature Resistance Test",
        subtitle: "ITI Test Report No: CTS 1709349 Part I",
        image: "/images/certificate11.webp",
        type: "Certificate"
    },
    {
        title: "Impact Strength Test",
        subtitle: "ITI Test Report No: CTS 1709349 Part II",
        image: "/images/certificate12.webp",
        type: "Certificate"
    },
    {
        title: "Lead (as Pb) mg/kg Test",
        subtitle: "ITI Test Report No: SS 1715290",
        image: "/images/certificate13.webp",
        type: "Certificate"
    },
    {
        title: "Elongation At Break Test",
        subtitle: "Dept. of Materials Science and Engineering, University of Moratuwa",
        image: "/images/certificate14.webp",
        type: "Certificate"
    },
    {
        title: "Corrodibility Test",
        subtitle: "Dept. of Materials Science and Engineering, University of Moratuwa",
        image: "/images/certificate15.webp",
        type: "Certificate"
    },
    {
        title: "Tear Resistance Test",
        subtitle: "Dept. of Materials Science and Engineering, University of Moratuwa",
        image: "/images/certificate16.webp",
        type: "Certificate"
    },
    {
        title: "Water Absorption Test",
        subtitle: "Dept. of Materials Science and Engineering, University of Moratuwa",
        image: "/images/certificate17.webp",
        type: "Certificate"
    },
    {
        title: "Temperature of Deflection Test",
        subtitle: "Dept. of Materials Science and Engineering, University of Moratuwa",
        image: "/images/certificate18.webp",
        type: "Certificate"
    },
    {
        title: "Tensile Strength Test",
        subtitle: "Dept. of Materials Science and Engineering, University of Moratuwa",
        image: "/images/certificate19.webp",
        type: "Certificate"
    },
    {
        title: "Thermal Conductivity Test",
        subtitle: "Dept. of Materials Science and Engineering, University of Moratuwa",
        image: "/images/certificate20.webp",
        type: "Certificate"
    },
    {
        title: "Average Impact Strength Test",
        subtitle: "Dept. of Materials Science and Engineering, University of Moratuwa",
        image: "/images/certificate21.webp",
        type: "Certificate"
    },
    {
        title: "Average Impact Strength Test",
        subtitle: "Dept. of Materials Science and Engineering, University of Moratuwa",
        image: "/images/certificate22.webp",
        type: "Certificate"
    },
    {
        title: "UV Exposure Test",
        subtitle: "Dept. of Materials Science and Engineering, University of Moratuwa",
        image: "/images/certificate23.webp",
        type: "Certificate"
    }
];
