Skip to content
Open
Changes from 1 commit
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
19 changes: 3 additions & 16 deletions app/protocols/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,26 +93,12 @@ export default function ProtocolsPage() {
<div className="h-56 bg-gradient-to-r from-primary via-info to-secondary blur-[100px]"></div>
<div className="h-56 bg-gradient-to-r from-secondary via-info to-primary blur-[100px]"></div>
</div>

<Container>
{/*
<div className="relative z-20 mb-12 space-y-4 text-center">
<h2 className="text-4xl font-bold text-black md:text-4xl">
Protocols <br /> Researched and Developed <br /> by The Stable Order
</h2>
<p className="text-lg leading-6 text-black opacity-80 lg:mx-auto lg:w-6/12">

</p>
</div>
*/}
{/*
<h2 className="mb-5 text-2xl font-bold text-black underline decoration-dashed underline-offset-4">
Protocols
</h2>
*/}
<div className="mb-20 grid gap-8 md:grid-cols-2 lg:grid-cols-4">
{protocols1.map((protocol, index) => (
<Card
key={index}
key={protocol.title} // ✅ FIXED: stable, unique key
index={index}
image={protocol.image}
title={protocol.title}
Expand All @@ -122,6 +108,7 @@ export default function ProtocolsPage() {
))}
</div>
</Container>

<CTA
heading="The Stable Order"
text="The Stable Order is an open and mutually supportive collaboration, whose primary activity is the research and development of novel protocols that stabilize the decentralized economy. If you share our goals and would like to work together or support us, get in touch."
Expand Down