
export interface serviceManageDataType{
    id:number;
    title:string;
    class:string;
}

export const serviceManageData:serviceManageDataType[] = [
    {
        id:1,
        title:"Web Development",
        class:"single-services text-center"
    },
    {
        id:2,
        title:"Database Analysis",
        class:"single-services active text-center"
    },
    {
        id:3,
        title:"Server Security",
        class:"single-services text-center"
    },
]