Also accumulates other pre-existing changes: - refactor(icons): replace deprecated BarChart3 with TrendingUp - refactor(services): replace emoji icons with LucideIcon components - refactor(footer): use logo-white for dark background - cleanup(archive): remove unused archive components - cleanup(constants): remove unused types and exports
15 lines
1.0 KiB
TypeScript
15 lines
1.0 KiB
TypeScript
export { COMPANY_INFO } from './company';
|
|
export { NAVIGATION, NAVIGATION_V2, MEGA_DROPDOWN_DATA } from './navigation';
|
|
export type { NavigationItem, NavigationItemV2, MegaDropdownItem, MegaDropdownGroup, MegaDropdownData } from './navigation';
|
|
export { STATS, type StatItem } from './stats';
|
|
export { SERVICES } from './services';
|
|
export { PRODUCTS, type Product } from './products';
|
|
export type { StandaloneProduct } from './standalone-products';
|
|
export { NEWS, type NewsItem, type NewsCategory } from './news';
|
|
export type { TeamMember } from './team';
|
|
export { METHODOLOGY, type MethodologyPhase } from './methodology';
|
|
export { SOLUTIONS, type Solution } from './solutions';
|
|
export { CASE_INDUSTRIES, type CaseStudy, type CaseMetric, type CaseTimelinePhase, type CaseService, type CaseTestimonial } from './cases';
|
|
export { HERO_THEMES, getHeroTheme, type HeroTheme, type HeroLayout, type HeroTexture } from './hero-themes';
|
|
export { getProductCrossRefs, getSolutionCrossRefs, getServiceCrossRefs, type CrossReference } from './cross-references';
|