Skip to content

Commit

Permalink
Add cartridge logo to footers
Browse files Browse the repository at this point in the history
  • Loading branch information
JorikSchellekens committed Feb 6, 2025
1 parent c0656d1 commit cac914a
Show file tree
Hide file tree
Showing 5 changed files with 73 additions and 22 deletions.
2 changes: 1 addition & 1 deletion extension/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 3,
"name": "Teeception",
"version": "1.0.0",
"description": "Pay-to-tweet mechanism for interacting with AI agents on X",
"description": "Pay-to-tweet mechanism for interacting with AI agents on X, powered by Starknet, Phala, Cartridge, and Nethermind",
"author": "[email protected]",
"icons": {
"16": "icons/teeception-16.png",
Expand Down
15 changes: 15 additions & 0 deletions extension/public/icons/cartridge.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
39 changes: 23 additions & 16 deletions extension/src/Popup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,29 @@ const Popup = () => {

<div className="w-full flex flex-col gap-1">
<p className="text-[#B8B8B8] text-[10.42px]">powered by</p>
<div className="flex items-center gap-3">
<a href="https://starknet.io" target="_blank" rel="noopener noreferrer" className="hover:opacity-80 transition-opacity">
<img src="/icons/starknet.svg" alt="starknet" className="w-[76px] h-[17px]" />
</a>
<span className="text-[#B8B8B8] text-lg">×</span>
<a href="https://phala.network" target="_blank" rel="noopener noreferrer" className="hover:opacity-80 transition-opacity">
<img src="/icons/phala.svg" alt="phala network" className="w-[28px] h-[28px] bg-black rounded-sm" />
</a>
<span className="text-[#B8B8B8] text-lg">×</span>
<a href="https://nethermind.io" target="_blank" rel="noopener noreferrer" className="hover:opacity-80 transition-opacity">
<img
src="https://cdn.prod.website-files.com/63bcd69729ab7f3ec1ad210a/64bf04d14176fe2fb1aff258_Nethermind_Light_Horizontal%201.webp"
alt="nethermind"
className="h-[17px] w-auto"
/>
</a>
<div className="flex flex-col gap-3 mb-3">
<div className="flex items-center justify-center">
<a href="https://nethermind.io" target="_blank" rel="noopener noreferrer" className="hover:opacity-80 transition-opacity">
<img
src="https://cdn.prod.website-files.com/63bcd69729ab7f3ec1ad210a/64bf04d14176fe2fb1aff258_Nethermind_Light_Horizontal%201.webp"
alt="nethermind"
className="h-[17px] w-auto"
/>
</a>
</div>
<div className="flex items-center gap-3 justify-center">
<a href="https://starknet.io" target="_blank" rel="noopener noreferrer" className="hover:opacity-80 transition-opacity">
<img src="/icons/starknet.svg" alt="starknet" className="w-[76px] h-[17px]" />
</a>
<span className="text-[#B8B8B8] text-lg">×</span>
<a href="https://phala.network" target="_blank" rel="noopener noreferrer" className="hover:opacity-80 transition-opacity">
<img src="/icons/phala.svg" alt="phala network" className="w-[28px] h-[28px] bg-black rounded-sm" />
</a>
<span className="text-[#B8B8B8] text-lg">×</span>
<a href="https://cartridge.gg" target="_blank" rel="noopener noreferrer" className="hover:opacity-80 transition-opacity">
<img src="/icons/cartridge.svg" alt="cartridge" className="h-[24px] w-auto" />
</a>
</div>
</div>
<p className="text-[#B8B8B8] text-xs">©2025 Nethermind. All Rights Reserved</p>
</div>
Expand Down
24 changes: 19 additions & 5 deletions frontend/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,18 @@ export const Footer = () => {
</li>

<li className="flex items-center gap-3">
<Link
href="https://nethermind.io"
target="_blank"
className="hover:opacity-80 transition-opacity"
>
<img
src="https://cdn.prod.website-files.com/63bcd69729ab7f3ec1ad210a/64bf04d14176fe2fb1aff258_Nethermind_Light_Horizontal%201.webp"
alt="nethermind"
className="h-[17px] w-auto"
/>
</Link>
<span className="text-[#B8B8B8] text-lg">×</span>
<Link
href="https://starknet.io"
target="_blank"
Expand All @@ -36,14 +48,16 @@ export const Footer = () => {
</Link>
<span className="text-[#B8B8B8] text-lg">×</span>
<Link
href="https://nethermind.io"
href="https://cartridge.gg"
target="_blank"
className="hover:opacity-80 transition-opacity"
>
<img
src="https://cdn.prod.website-files.com/63bcd69729ab7f3ec1ad210a/64bf04d14176fe2fb1aff258_Nethermind_Light_Horizontal%201.webp"
alt="nethermind"
className="h-[17px] w-auto"
<Image
src="/icons/cartridge.svg"
width={96}
height={24}
alt="cartridge"
className="h-[24px] w-auto"
/>
</Link>
</li>
Expand Down
15 changes: 15 additions & 0 deletions frontend/public/icons/cartridge.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit cac914a

Please sign in to comment.