Skip to content

Commit

Permalink
fix: enhancements (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
bennettyong authored Apr 4, 2024
1 parent 8112246 commit 65a26e6
Show file tree
Hide file tree
Showing 10 changed files with 31 additions and 11 deletions.
Binary file modified public/img/solutions/item-bridge.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/solutions/item-explorer.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/img/solutions/item-explorer.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/img/solutions/item-swap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions public/img/sprite.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 14 additions & 5 deletions public/locales/en/grant-program.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,23 +52,32 @@
"title": "Grant Tracks",
"applyNow": "Apply now",
"items": [
{
"icon": "/img/grant/track-icon-1.svg",
"title": "Community",
"track": "Track",
"link": "https://app.charmverse.io/taiko/partner-track-9459862254384057",
"text": "The Community Track is aimed at builders and early-stage projects that are being, or have been, built on Taiko. We’re looking to see what grassroots Taiko community builders have been up to lately. It could be anything from gaming, media, community, to ZKP applications or AI — everything is welcome!",
"timeline": "The Community Track is <b>Closed</b>",
"active": false
},
{
"icon": "/img/grant/track-icon-2.svg",
"title": "Partner",
"track": "Track",
"link": "https://app.charmverse.io/taiko/partner-track-9459862254384057",
"text": "The Partner Track is aimed at established and mature projects or service providers. This track is suitable for projects that are already live, have some active users, and a sizeable community. <br/><br/> The track could also be suitable for a crypto service provider that is looking to integrate, support, or deploy on Taikoand would like to make a grant application. The goal is to onboard the projects/service providers everyone knows and loves to Taiko and make them feel at home.",
"timeline": "The Partner Track is an <b>ongoing track that is going to stay open</b> beyond Cycle 2.",
"active": false
"text": "The Partner Track is aimed at established and mature projects or service providers. This track is suitable for projects that are already live, have some active users, and a sizeable community. <br/><br/> The track could also be suitable for a crypto service provider that is looking to integrate, support, or deploy on Taiko and would like to make a grant application. The goal is to onboard the projects/service providers everyone knows and loves to Taiko and make them feel at home.",
"timeline": "The Partner Track is <b>Open</b>",
"active": true
},
{
"icon": "/img/grant/track-icon-3.svg",
"title": "Request for Proposal (RFP)",
"track": "Track",
"link": "https://app.charmverse.io/taiko/request-for-proposal-rfp-track-8186138497093947",
"text": "The RFP Track is aimed at experienced builders or teams who want to work on high-impact projects that are submitted by Taiko Labs. These will typically be specific requests for features or solutions that relate to the Taiko protocol or ecosystem. The Taiko team will submit such requests, as and when needed, and invite proposals from the community. <br/><br/>A list of our current RFPs can be found <u>here</u> and applications are open to anyone, including established teams and prior grantees.",
"timeline": "The RFPs Track is an <b>ongoing track that is going to stay open</b> beyond Cycle 2.",
"active": false
"timeline": "The RFPs Track is <b>Open</b>",
"active": true
}
]
},
Expand Down
3 changes: 3 additions & 0 deletions public/locales/en/header.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@
{
"icon": "socials:github",
"url": "https://github.com/taikoxyz"
},{
"icon": "socials:twitter",
"url": "https://twitter.com/taikoxyz"
}, {
"icon": "socials:discord",
"url": "https://discord.com/invite/taikoxyz"
Expand Down
6 changes: 3 additions & 3 deletions public/locales/en/solutions.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"text": "Taiko’s canonical bridge is the gateway to interacting with our ecosystem.",
"image": {
"default": "/img/solutions/item-bridge.png",
"webp": "/img/solutions/item-bridge.webp"
"webp": "/img/solutions/item-bridge.png"
},
"url": "https://bridge.katla.taiko.xyz/"
}, {
Expand All @@ -25,7 +25,7 @@
"text": "Swap tokens effortlessly on our native fork of Uniswap v3.",
"image": {
"default": "/img/solutions/item-swap.png",
"webp": "/img/solutions/item-swap.webp"
"webp": "/img/solutions/item-swap.png"
},
"url": "https://swap.katla.taiko.xyz/"
}, {
Expand All @@ -34,7 +34,7 @@
"text": "Search and analyze contracts and transactions on the Taiko blockchain.",
"image": {
"default": "/img/solutions/item-explorer.png",
"webp": "/img/solutions/item-explorer.webp"
"webp": "/img/solutions/item-explorer.png"
},
"url": "https://katla.taikoscan.network/"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const EcosystemDapps: React.FC= () => {
let current = { var: +(spanRef.current.textContent || 0) };

gsap.to(current, 2, {
var: 90,
var: 100,
onUpdate: function() {
spanRef.current!.innerHTML = `${Math.ceil(current.var)}`;
}
Expand Down
4 changes: 2 additions & 2 deletions src/widgets/11-grant-screens/ui/05-tracks/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export const Tracks: React.FC = () => {
</p>
</div>

<MediaQuery
{item.active && <MediaQuery
query="(min-width: 769px)"
children={
<Button
Expand All @@ -55,7 +55,7 @@ export const Tracks: React.FC = () => {
variant="pink-outlined"
/>
}
/>
/>}
</div>

<p
Expand Down

0 comments on commit 65a26e6

Please sign in to comment.