feat: Implement featured agents section within the CMS features management interface.
This commit is contained in:
@@ -14,10 +14,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 {
|
||||
|
||||
@@ -68,6 +68,7 @@ export type {
|
||||
HeroContent,
|
||||
FeaturesContent,
|
||||
FeatureItem,
|
||||
FeaturedAgentItem,
|
||||
TopProfessionalsContent,
|
||||
ProfessionalItem,
|
||||
TestimonialsContent,
|
||||
|
||||
Reference in New Issue
Block a user