Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions content/providers/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ technology.

<EcosystemSearchBar placeholder="Search Sei providers..." />

## Consumer Apps

<EcosystemDynamicSection category="Consumer Apps" />

## Infrastructure

<EcosystemDynamicSection category="Infrastructure" />
Expand Down
4 changes: 2 additions & 2 deletions src/components/AppCard/AppCard.v2.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ export default function AppCardV2({ app }: AppCardV2Props) {
href={link || '#'}
target='_blank'
rel='noopener noreferrer'
className='group flex flex-col w-[250px] min-h-[330px] h-fit flex-shrink-0 bg-neutral-100 dark:bg-neutral-900 border border-neutral-300 dark:border-neutral-800 rounded-lg overflow-hidden transition-transform hover:opacity-80'>
className='group flex flex-col w-[190px] min-h-[250px] h-fit flex-shrink-0 bg-neutral-100 dark:bg-neutral-900 border border-neutral-300 dark:border-neutral-800 rounded-lg overflow-hidden transition-transform hover:opacity-80'>
<div className='relative flex items-center justify-center aspect-square border-b border-b-neutral-300 dark:border-b-neutral-800'>
<Image src={logo.url} alt={name} width={250} height={250} className='mx-auto transition-transform max-h-[250px]' />
<Image src={logo.url} alt={name} width={200} height={200} className='mx-auto transition-transform max-h-[200px]' />
</div>

<div className='p-4 flex flex-col justify-between grow'>
Expand Down
4 changes: 2 additions & 2 deletions src/components/EcosystemMap/EcosystemSkeleton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ export function EcosystemSkeleton() {
<div className='flex flex-col gap-6 pt-8'>
<div className='w-1/3 h-8 bg-neutral-200 dark:bg-neutral-800 rounded-md animate-pulse' />
<div className='flex gap-4 overflow-x-auto'>
{Array.from({ length: 6 }).map((_, i) => (
<div key={i} className='w-64 h-64 bg-neutral-200 dark:bg-neutral-800 rounded-md animate-pulse flex-shrink-0' />
{Array.from({ length: 3 }).map((_, i) => (
<div key={i} className='w-50 h-50 bg-neutral-200 dark:bg-neutral-800 rounded-md animate-pulse flex-shrink-0' />
))}
</div>
</div>
Expand Down