-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
292 additions
and
162 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
118 changes: 118 additions & 0 deletions
118
apps/web/src/app/(routes)/lounge/_components/MarketplacesList.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
import { ArrowIcon, Typography } from "design-system"; | ||
import Image from "next/image"; | ||
|
||
export default function MarketplacesList() { | ||
return ( | ||
<div className="mb-16"> | ||
<Typography | ||
className="mb-8 text-left" | ||
component="h3" | ||
variant="heading_light_s" | ||
> | ||
Discover Everai on Starknet Marketplaces | ||
</Typography> | ||
<div className="mt-2 grid grid-cols-4 gap-6"> | ||
<a | ||
className="flex h-[5.625rem] items-center justify-between rounded-xl border border-asteroid-grey-100 bg-white px-6 transition-colors hover:bg-space-blue-100 dark:border-space-blue-800 dark:bg-space-blue-900 dark:hover:bg-space-blue-800" | ||
href="/" | ||
> | ||
<Image | ||
alt="Element" | ||
className="mx-auto hidden h-8 w-auto dark:block" | ||
height={32} | ||
src="/logos/dark/element.svg" | ||
width={136} | ||
/> | ||
<Image | ||
alt="Element" | ||
className="mx-auto h-8 w-auto dark:hidden" | ||
height={32} | ||
src="/logos/element.svg" | ||
width={136} | ||
/> | ||
<ArrowIcon className="flex-shrink-0" /> | ||
</a> | ||
<a | ||
className="flex h-[5.625rem] items-center justify-between rounded-xl border border-asteroid-grey-100 bg-white px-6 transition-colors hover:bg-space-blue-100 dark:border-space-blue-800 dark:bg-space-blue-900 dark:hover:bg-space-blue-800" | ||
href="/" | ||
> | ||
<Image | ||
alt="Unframed" | ||
className="mx-auto hidden w-auto dark:block" | ||
height={42} | ||
src="/logos/dark/unframed.svg" | ||
width={144} | ||
/> | ||
<Image | ||
alt="Unframed" | ||
className="mx-auto w-auto dark:hidden" | ||
height={42} | ||
src="/logos/unframed.svg" | ||
width={144} | ||
/> | ||
<ArrowIcon className="flex-shrink-0" /> | ||
</a> | ||
<a | ||
className="flex h-[5.625rem] items-center justify-between rounded-xl border border-asteroid-grey-100 bg-white px-6 transition-colors hover:bg-space-blue-100 dark:border-space-blue-800 dark:bg-space-blue-900 dark:hover:bg-space-blue-800" | ||
href="/" | ||
> | ||
<Image | ||
alt="Pyramid" | ||
className="mx-auto h-8 w-auto dark:hidden" | ||
height={32} | ||
src="/logos/pyramid.png" | ||
width={140} | ||
/> | ||
<Image | ||
alt="Pyramid" | ||
className="mx-auto hidden h-8 w-auto dark:block" | ||
height={32} | ||
src="/logos/dark/pyramid.png" | ||
width={140} | ||
/> | ||
<ArrowIcon className="flex-shrink-0" /> | ||
</a> | ||
<a | ||
className="flex h-[5.625rem] items-center justify-between rounded-xl border border-asteroid-grey-100 bg-white px-6 transition-colors hover:bg-space-blue-100 dark:border-space-blue-800 dark:bg-space-blue-900 dark:hover:bg-space-blue-800" | ||
href="/" | ||
> | ||
<Image | ||
alt="Flex" | ||
className="mx-auto h-12 w-auto dark:hidden" | ||
height={46} | ||
src="/logos/flex.png" | ||
width={68} | ||
/> | ||
<Image | ||
alt="Flex" | ||
className="mx-auto mb-1 hidden h-12 w-auto dark:block" | ||
height={46} | ||
src="/logos/dark/flex.png" | ||
width={68} | ||
/> | ||
<ArrowIcon className="flex-shrink-0" /> | ||
</a> | ||
<a | ||
className="flex h-[5.625rem] items-center justify-between rounded-xl border border-asteroid-grey-100 bg-white px-6 transition-colors hover:bg-space-blue-100 dark:border-space-blue-800 dark:bg-space-blue-900 dark:hover:bg-space-blue-800" | ||
href="/" | ||
> | ||
<Image | ||
alt="Ventory" | ||
className="mx-auto h-[2.625rem] w-auto dark:hidden" | ||
height={42} | ||
src="/logos/ventory.png" | ||
width={146} | ||
/> | ||
<Image | ||
alt="Ventory" | ||
className="mx-auto hidden h-[2.625rem] w-auto dark:block" | ||
height={42} | ||
src="/logos/dark/ventory.png" | ||
width={146} | ||
/> | ||
<ArrowIcon className="flex-shrink-0" /> | ||
</a> | ||
</div> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.