diff --git a/app/protocols/page.tsx b/app/protocols/page.tsx index d708ecc..6356889 100644 --- a/app/protocols/page.tsx +++ b/app/protocols/page.tsx @@ -93,35 +93,22 @@ export default function ProtocolsPage() {
+ - {/* -
-

- Protocols
Researched and Developed
by The Stable Order -

-

- -

-
- */} - {/* -

- Protocols -

- */}
{protocols1.map((protocol, index) => ( + ))}
+ = ({ index, image, title, description, link }) => { +const Card: React.FC = ({ image, title, description, link }) => { + return (
= ({ index, image, title, description, link }) => { {title}

- {description.split("\n").map((item, key) => { + {description.split("\n").map((item, idx) => { return ( - + {item}
- ) - })} + ) + })} + +