import { Heart, Brain, Target, Users, Linkedin, GraduationCap } from "lucide-react"; import { Card } from "@/components/ui/card"; const teamMembers = [ { name: "Fatma Al-Zahraa Emad", linkedin: "#" }, { name: "Gehad Mohamed", linkedin: "#" }, { name: "Hebatullah El Gazoly", linkedin: "#" }, { name: "Mohamed Assem", linkedin: "#" }, { name: "Mohamed Sameh", linkedin: "#" }, ]; export const AboutPage = () => { return (
{/* Hero Section */}

About Cardexa

An AI-powered echocardiography analysis platform for automated cardiac function assessment

{/* Project Overview */}

AI-Powered Analysis

Leveraging deep learning models to automatically analyze echocardiography videos and extract critical cardiac measurements.

Precise Measurements

Accurate identification of end-systolic and end-diastolic frames with volume calculations and ejection fraction estimation.

Clinical Assessment

Automated classification of heart function status to assist medical professionals in diagnosis and treatment planning.

{/* Supervisors Section */}

Project Supervisors

Supervisor

Dr. Mohammed A. Hassan

Teaching Assistant

Eng. Maha Salah

{/* Team Section */}

Our Team

{teamMembers.map((member, index) => (
{member.name.split(" ").map(n => n[0]).join("")}

{member.name}

))}
{/* Footer Note */}

© 2024 Cardexa - Cardiac Analysis Platform

Built with ❤️ for better healthcare

); };