Skip to content

Commit

Permalink
Add Zephyr Protocol (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
fennzar authored Oct 21, 2023
1 parent 1136f99 commit 878e8d1
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
Binary file added src/assets/zephyr-logo.png
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 src/components/pages/contributors/Contributors.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import AossieImage from '../../../assets/aossie.webp';
import CardanoTalent from '../../../assets/cardanoTalent.png';
import WiringBitsImage from '../../../assets/wiring_bits_logo.png';
import OccamXImage from '../../../assets/occam_x.svg';
import ZephyrImage from '../../../assets/zephyr-logo.png';
import { Swiper, SwiperSlide } from 'swiper/react';
import 'swiper/css';
import 'swiper/css/pagination';
Expand Down Expand Up @@ -65,6 +66,9 @@ export default function Contributors (props: Props): JSX.Element {
<SwiperSlide>
<ContributorCard contributor="Cardano Talent" imageSrc={CardanoTalent} contributorWeb="https://discord.gg/5U4Z3r2NJb" />
</SwiperSlide>
<SwiperSlide>
<ContributorCard contributor="Zephyr Protocol" imageSrc={ZephyrImage} contributorWeb="https://zephyrprotocol.com" />
</SwiperSlide>
</Swiper>
</div>
);
Expand Down
13 changes: 9 additions & 4 deletions src/components/pages/dapps/Dapps.tsx
Original file line number Diff line number Diff line change
@@ -1,26 +1,31 @@
import DappCard from '../../elements/cards/DappCard';
import DappLink from '../../elements/cards/DappLink';

export default function Dapps (): JSX.Element {
export default function Dapps(): JSX.Element {
const cardTextErgo = 'Interact with SigmaUSD,\nthe first deployment of Djed,\non the Ergo Blockchain.';
const cardTextCOTI = 'Interact with COTI\'s Djed\nimplemented in Plutus\non the Cardano Blockchain.';
const cardTextMilkomeda = 'Interact with Djed on\nthe Milkomeda-C1\nEVM Sidechain of Cardano.';
const cardTextZephyr = 'Interact with Zephyr Protocol, \na privacy focused, native chain \nDjed Implementation';

return (
<div className="py-20 my-20 items-center justify-center" id="djed_apps">
<h4 className='dappsSubtitle my-3'>Deployments of</h4>
<h2 className='dappsTitle mb-20'>Djed</h2>
<h4 className="dappsSubtitle my-3">Deployments of</h4>
<h2 className="dappsTitle mb-20">Djed</h2>
<div className="sm:flex-row lg:flex align-middle justify-center md:flex">
<DappCard cardTitle="SigmaUSD" cardText={cardTextErgo}>
<DappLink text="sigmausd.io" href="https://sigmausd.io/#/" />
<DappLink text="tokenjay.app" href="https://tokenjay.app/app/#ageusd" />
</DappCard>
<DappCard cardTitle="COTI&apos;s Djed" cardText={cardTextCOTI}>
<DappCard cardTitle="COTI's Djed" cardText={cardTextCOTI}>
<DappLink text="djed.xyz" href="https://djed.xyz/" />
</DappCard>
<DappCard cardTitle="Milkomeda-C1 Djed Dollar" cardText={cardTextMilkomeda}>
<DappLink text="milkomeda-c1.djed.one" href="https://milkomeda-c1.djed.one/" />
</DappCard>
<DappCard cardTitle="Zephyr Protocol" cardText={cardTextZephyr}>
<DappLink text="zephyrprotocol.com" href="https://zephyrprotocol.com/" />
<DappLink text="network.zephyrprotocol.com" href="https://network.zephyrprotocol.com/" />
</DappCard>
</div>
</div>
);
Expand Down

1 comment on commit 878e8d1

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Preview ready at https://main.djedone.codepreview.io

Powered by https://codepreview.io community edition.

Please sign in to comment.