Skip to content
Merged
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
33 changes: 33 additions & 0 deletions apps/web/app/(base-org-dark)/(builders)/build/onchainkit/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ const templateCardItems: {
},
];

const CDP_TERMS_OF_SERVICE_LINK =
'https://www.coinbase.com/legal/developer-platform/terms-of-service';
const CDP_PRIVACY_POLICY_LINK = 'https://www.coinbase.com/legal/privacy';

export default function OnchainKit() {
return (
<BuildersContainer
Expand All @@ -61,6 +65,35 @@ export default function OnchainKit() {
<div className="text-3xl leading-[1.125] tracking-[-0.96px]">
Ready-to-use, full-stack components to make building onchain faster and easier.
</div>
<div className="mt-4 text-xs text-base-gray-200" key="ock-terms-of-service">
By continuing, I have read and agree to the{' '}
<a
href={CDP_TERMS_OF_SERVICE_LINK}
target="_blank"
rel="noopener noreferrer"
className="text-white"
>
Terms&nbsp;of&nbsp;Service
</a>{' '}
and{' '}
<a
href={CDP_PRIVACY_POLICY_LINK}
target="_blank"
rel="noopener noreferrer"
className="text-white"
>
Privacy&nbsp;Policy
</a>
. For users in EU/UK, I confirm I have read and understood the{' '}
<a
href={CDP_PRIVACY_POLICY_LINK}
target="_blank"
rel="noopener noreferrer"
className="text-white"
>
Privacy&nbsp;Policy
</a>
</div>
</div>,
<div className="order-1 md:order-2" key="ock-hero-cta">
<CtaActions />
Expand Down