images changes

This commit is contained in:
priyanshuvish
2025-10-07 14:39:14 +05:30
parent 06518400a7
commit b5a8f0f9c3
25 changed files with 1188 additions and 919 deletions

BIN
src/assets/Campus1.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 MiB

BIN
src/assets/Campus2.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 MiB

BIN
src/assets/Campus3.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 MiB

BIN
src/assets/Campus4.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 MiB

BIN
src/assets/Campus5.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 MiB

BIN
src/assets/Campus6.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 MiB

BIN
src/assets/Classroom1.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 MiB

BIN
src/assets/Classroom2.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 MiB

BIN
src/assets/Classroom3.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 MiB

BIN
src/assets/Classroom4.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 MiB

BIN
src/assets/Classroom5.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 MiB

BIN
src/assets/boardroom.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 MiB

BIN
src/assets/morning.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 MiB

File diff suppressed because it is too large Load Diff

View File

@@ -18,17 +18,7 @@ const logoData = [
{ src: larsen, name: 'ARES', width: 163, height: 54 }, // ARES
{ src: axis, name: 'KADANS', width: 206, height: 54 }, // KADANS
{ src: levis, name: 'levis', width: 206, height: 54 }, // KADANS
{ src: tata, name: 'tata', width: 206, height: 54 }, // KADANS
// { src: tata, name: 'tata', width: 206, height: 54 }, // KADANS
// Repeat logos for more variety in scrolling
{ src: accenture, name: 'CANMOOR', width: 302, height: 54 }, // CANMOOR (repeat)
{ src: ceat, name: 'BlackRock', width: 210, height: 54 }, // BlackRock (repeat)
{ src: hsbc, name: 'Royal London', width: 145, height: 54 }, // Royal London (repeat)
{ src: adani, name: 'Abstract', width: 172, height: 54 }, // Abstract (repeat)
{ src: larsen, name: 'ARES', width: 163, height: 54 }, // ARES (repeat)
{ src: axis, name: 'KADANS', width: 206, height: 54 }, // KADANS (repeat)
{ src: levis, name: 'levis', width: 206, height: 54 }, // KADANS
{ src: tata, name: 'tata', width: 206, height: 54 }, // KADANS
{ src: tata, name: 'tata', width: 206, height: 54 },
];
@@ -98,7 +88,7 @@ export function LogosSection() {
>
{/* Top Row - Scrolling Left to Right */}
<div
className="relative h-[54px] mb-16 overflow-hidden"
className="relative h-[54px] overflow-hidden"
role="list"
aria-label="Client logos row 1"
>
@@ -132,43 +122,6 @@ export function LogosSection() {
</div>
</div>
</div>
{/* Bottom Row - Scrolling Right to Left */}
<div
className="relative h-[54px] overflow-hidden"
role="list"
aria-label="Client logos row 2"
>
<div className="flex items-center h-full will-change-transform">
<div
className="scroll-right flex items-center h-full"
style={{
width: '400%',
gap: '80px',
paddingLeft: '40px',
paddingRight: '40px'
}}
>
{/* Create multiple sets for seamless infinite scroll */}
{[1, 2, 3, 4].map((setNumber) => (
<div
key={`bottom-set-${setNumber}`}
className="flex items-center h-full"
style={{ gap: '80px' }}
>
{bottomRowLogos.map((logo, index) => (
<LogoItem
key={`bottom-${setNumber}-${index}`}
logo={logo}
index={index}
duplicate={setNumber > 1}
/>
))}
</div>
))}
</div>
</div>
</div>
</div>
</section>
);