11import { motion } from 'framer-motion' ;
22import { Users , Rocket , Mail , Linkedin } from 'lucide-react' ;
33
4+ // Import team images
5+ import WesImage from '../assets/Wes.webp' ;
6+ import JayImage from '../assets/Jay.webp' ;
7+ import AniImage from '../assets/Ani.webp' ; // Assuming this is Anil Kumar based on usage below
8+ import NavImage from '../assets/Nav.webp' ;
9+ import DurImage from '../assets/Dur.webp' ;
10+ import CheImage from '../assets/che.webp' ;
11+
412// --- TypeScript interface for strong typing ---
513interface TeamMember {
614 name : string ;
@@ -17,14 +25,12 @@ const CARD_WIDTH = 400;
1725const CARD_HEIGHT = 600 ;
1826const IMAGE_HEIGHT = 320 ;
1927
20-
21-
2228const coreTeam : TeamMember [ ] = [
2329 {
2430 name : "Wesly Jambarapu" ,
2531 role : "CEO & Founder" ,
2632 background : "As CEO of LCM, I pioneer breakthrough solution of LCM that enable electric vehicles to charge while in motion" ,
27- image : "src/assets/Wes.webp" ,
33+ image : WesImage ,
2834 social : {
2935 linkedin : "https://www.linkedin.com/in/wesly-j/" ,
3036@@ -34,7 +40,7 @@ const coreTeam: TeamMember[] = [
3440 name : "Jayshri Bej" ,
3541 role : "Co-Founder & CRO" ,
3642 background : "As CRO of LCM, I steer project management, ensuring our solutions meet real-world needs and scale effectively" ,
37- image : "src/assets/Jay.webp" ,
43+ image : JayImage ,
3844 social : {
3945 linkedin : "https://www.linkedin.com/in/jayshri-bej/" ,
4046@@ -44,7 +50,7 @@ const coreTeam: TeamMember[] = [
4450 name : "Anil Kumar" ,
4551 role : "Co-Founder & CPO" ,
4652 background : "Former aerospace engineer specializing in airflow dynamics and propulsion systems with experience at Boeing and SpaceX." ,
47- image : "src/assets/Ani.webp" ,
53+ image : AniImage ,
4854 social : {
4955 linkedin : "https://www.linkedin.com/in/anilkumar-pidamarthi/" ,
5056@@ -54,7 +60,7 @@ const coreTeam: TeamMember[] = [
5460 name : "Naveen Islavath" ,
5561 role : "Co-Founder & CFO" ,
5662 background : "As CFO, I manage financial operations and drive strategic partnerships to fuel LCM's growth." ,
57- image : "src/assets/Nav.webp" ,
63+ image : NavImage ,
5864 social : {
5965 linkedin : "https://www.linkedin.com/in/naveen-islavath-b992021ba" ,
6066@@ -64,7 +70,7 @@ const coreTeam: TeamMember[] = [
6470 name : "Durga Prasad" ,
6571 role : "CTO" ,
6672 background : "As CTO, I architect and drive the core technology powering LCM's breakthrough EV charging solutions." ,
67- image : "src/assets/Dur.webp" ,
73+ image : DurImage ,
6874 social : {
6975 linkedin : "https://www.linkedin.com/in/durga-prasad-nuthalapati-646b73233/" ,
7076@@ -74,7 +80,7 @@ const coreTeam: TeamMember[] = [
7480 name : "Chethan Ashray C" ,
7581 role : "COO" ,
7682 background : "As COO, I streamline operations at LCM to ensure seamless delivery of innovative EV charging solutions." ,
77- image : "src/assets/che.webp" ,
83+ image : CheImage ,
7884 social : {
7985 linkedin : "https://www.linkedin.com/in/chethan-ashray-1351b0329" ,
8086
0 commit comments