refactor: replace team member section with feature cards and add associated SVG icons

This commit is contained in:
pradeepkumar
2026-04-15 07:15:56 +05:30
parent 3897a47756
commit 5e787f2720
5 changed files with 85 additions and 53 deletions

View File

@@ -95,16 +95,17 @@ export interface AboutFeaturesContent {
features: AboutFeatureItem[];
}
export interface AboutTeamMember {
name: string;
role: string;
imageUrl: string;
export interface AboutTeamCard {
title: string;
description: string;
iconPath: string;
}
export interface AboutTeamContent {
title: string;
subtitle: string;
members: AboutTeamMember[];
intro: string;
cards: AboutTeamCard[];
}
export interface AboutCtaContent {