About Section
Overview
The AboutSection component is a React functional component that renders a comprehensive "About Us" section for the COFI XYNTRA project. It includes company information, statistics, mission statement, team member profiles, and a call-to-action for recruitment.
Data Structures
Team Members
The component defines an array of team member objects with the following structure:
interface TeamMember {
id: string;
name: string;
role: string;
bio: string;
image: string;
linkedin: string;
twitter: string;
specialties: string[];
}Company Statistics
The component defines an array of company statistic objects with the following structure:
Styling
The component uses Tailwind CSS for styling with the following notable features:
Gradient backgrounds (
bg-gradient-to-*)Backdrop blur effects (
backdrop-blur-sm)Border transitions on hover
Responsive grid layouts
Text gradients for emphasis
Usage
To use this component, simply import and include it in your React application:
Customization
To customize this component:
Replace placeholder images with actual team member photos
Update team member information in the
teamMembersarrayModify company statistics in the
companyStatsarrayAdjust colors and gradients to match your brand
Update social media links with actual URLs
Dependencies
This component requires:
React
Tailwind CSS (with appropriate configuration)
Heroicons or similar icon set (for social media icons)
Last updated