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
3 changes: 3 additions & 0 deletions mintlify/images/IconArrowTopBottom.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions mintlify/images/IconChevronDoubleUp.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions mintlify/images/IconGift.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions mintlify/images/IconGlobus-green.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions mintlify/images/IconHammer.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions mintlify/images/blue-lines.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 23 additions & 0 deletions mintlify/images/postman.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 10 additions & 9 deletions mintlify/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ export const HeroCard = ({ title, description, href, icon }) => {
);
};

<div className="flex flex-col items-center self-stretch w-full hero">
<div className="flex relative flex-col items-center self-stretch w-full hero">
<div className="blue-lines w-full h-full absolute top-0 left-0 z-0" noZoom />
<div className="flex flex-col items-center gap-[48px]">
<div className="flex items-center title">
<img
Expand Down Expand Up @@ -51,25 +52,25 @@ export const HeroCard = ({ title, description, href, icon }) => {
title="Payouts"
description="Send value instantly across currencies and borders."
href="/payouts"
icon="/images/IconGlobus.svg"
icon="/images/IconChevronDoubleUp.svg"
/>
<HeroCard
title="Ramps"
description="Convert between crypto and fiat currencies."
href="/ramps"
icon="/images/IconGlobus.svg"
icon="/images/IconArrowTopBottom.svg"
/>
<HeroCard
title="Rewards & cashback"
description="Deliver micro-payouts at scale instantly and in local currency."
href="/rewards"
icon="/images/IconGlobus.svg"
icon="/images/IconGift.svg"
/>
<HeroCard
title="Global P2P"
description="Accept funds via bank transfers, wallets, or UMAs, and settle them in the currency of your choice."
href="/remittances"
icon="/images/IconGlobus.svg"
icon="/images/IconGlobus-green.svg"
/>
</div>
</div>
Expand All @@ -78,8 +79,8 @@ export const HeroCard = ({ title, description, href, icon }) => {
<div className="flex usecase w-full justify-center items-center">
<div className="section mx-auto">
<div>
<h2 className="highlight">Get started</h2>
<h2>Grid resources</h2>
<h2 className="highlight">Resources</h2>
<h2>Explore, test, and integrate</h2>
</div>
<div className="flex flex-col gap-8">
<div className="flex items-stretch w-full gap-6 flex-wrap">
Expand All @@ -93,13 +94,13 @@ export const HeroCard = ({ title, description, href, icon }) => {
title="Tools"
description="Tools and resources to help you understand and test payment flows."
href="/developer-resources/tools"
icon="/images/IconGlobus.svg"
icon="/images/IconHammer.svg"
/>
<HeroCard
title="Postman collection"
description="Quickly get started with Grid using our Postman collection."
href="/developer-resources/postman-collection"
icon="/images/IconGlobus.svg"
icon="/images/postman.svg"
/>
</div>
</div>
Expand Down
7 changes: 7 additions & 0 deletions mintlify/styles/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@ html.light .hero {
border-top: 1px solid var(--border-tertiary, rgba(0, 0, 0, 0.1));
}

html.light .blue-lines {
background-image: url('/images/blue-lines.svg');
background-position: top left;
background-repeat: no-repeat;
background-size: 100% 100%;
}

html.light .title {
color: #1a1a1a;
}
Expand Down