export interface IFeature {
    id: number;
    title: string;
    description: string;
    href?: string;
    icon: string;
}
