Skip to content

Commit 15a172b

Browse files
committed
Fix image paths for custom domain
1 parent bf51777 commit 15a172b

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/components/home/TeamSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ const teamMembers: TeamMemberProps[] = [
109109
},
110110
{
111111
name: "Anil Kumar",
112-
role: "Founder & CEO",
112+
role: "Co-Founder & CPO",
113113
bio: "Experienced in EV technology and sustainable energy solutions.",
114114
image: AniImage,
115115
social: {

src/components/home/TechnologySection.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ import React, { useState, useCallback, memo } from 'react';
22
import { Wind, Cog, Gauge, Zap } from 'lucide-react';
33

44
// Instead, define image paths:
5-
const propellerImage = '/Loopchargingmodule/assets/propeller2.webp';
6-
const torqueConverterImage = '/Loopchargingmodule/assets/torque.webp';
7-
const gearSetImage = '/Loopchargingmodule/assets/Gearset.webp';
8-
const generatorImage = '/Loopchargingmodule/assets/Generator.webp';
9-
const defaultEvCarImage = '/Loopchargingmodule/assets/L2.webp';
5+
const propellerImage = '/assets/propeller2.webp';
6+
const torqueConverterImage = '/assets/torque.webp';
7+
const gearSetImage = '/assets/Gearset.webp';
8+
const generatorImage = '/assets/Generator.webp';
9+
const defaultEvCarImage = '/assets/L2.webp';
1010

1111
// Simple image display component
1212
const TechImageDisplay = memo(({

0 commit comments

Comments
 (0)