interface category { icon: string; href: string; title: string; subtitle: string; } export interface CategoryProps { data?: category[]; } export {};