feat: Implement dynamic featured agent cards with image loading and CMS content integration in FeaturesSection.
This commit is contained in:
@@ -11,10 +11,20 @@ export interface FeatureItem {
|
||||
description: string;
|
||||
}
|
||||
|
||||
export interface FeaturedAgentItem {
|
||||
name: string;
|
||||
role: string;
|
||||
rating: string;
|
||||
location: string;
|
||||
experience: string;
|
||||
imageUrl: string;
|
||||
}
|
||||
|
||||
export interface FeaturesContent {
|
||||
title: string;
|
||||
subtitle: string;
|
||||
features: FeatureItem[];
|
||||
featuredAgents?: FeaturedAgentItem[];
|
||||
}
|
||||
|
||||
export interface ProfessionalItem {
|
||||
|
||||
Reference in New Issue
Block a user