Skip to content

Commit

Permalink
fix format + remove unused pages
Browse files Browse the repository at this point in the history
  • Loading branch information
KlonD90 committed Jan 28, 2025
1 parent 4bbffbc commit 452481d
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 55 deletions.
19 changes: 13 additions & 6 deletions site/src/components/pages/LandingPage/Sponsors/Sponsors.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,22 @@ export const Sponsors = () => {
{/* Original list */}
{sponsors.map((sponsor, index) => (
<div className={s.sponsors__item} key={`original-${index}`}>
<div className={cn(s.sponsors__img, sponsor.className || '')} style={{ backgroundImage: `url('${sponsor.src}')` }} />
<div
className={cn(s.sponsors__img, sponsor.className || '')}
style={{ backgroundImage: `url('${sponsor.src}')` }}
/>
</div>
))}
{/* Duplicate list for seamless infinite scroll */}
{isMobile && sponsors.map((sponsor, index) => (
<div className={s.sponsors__item} key={`duplicate-${index}`}>
<div className={cn(s.sponsors__img, sponsor.className || '')} style={{ backgroundImage: `url('${sponsor.src}')` }} />
</div>
))}
{isMobile &&
sponsors.map((sponsor, index) => (
<div className={s.sponsors__item} key={`duplicate-${index}`}>
<div
className={cn(s.sponsors__img, sponsor.className || '')}
style={{ backgroundImage: `url('${sponsor.src}')` }}
/>
</div>
))}
</div>
</div>
</div>
Expand Down
25 changes: 0 additions & 25 deletions site/src/pages/proof-market.tsx

This file was deleted.

24 changes: 0 additions & 24 deletions site/src/pages/zkLLVM.tsx

This file was deleted.

0 comments on commit 452481d

Please sign in to comment.