diff --git a/public/content/images/alliance/mean_fi.svg b/public/content/images/alliance/mean_fi.svg new file mode 100644 index 00000000..fa70a9b9 --- /dev/null +++ b/public/content/images/alliance/mean_fi.svg @@ -0,0 +1,5 @@ + \ No newline at end of file diff --git a/public/content/images/bounties/gearbox.svg b/public/content/images/bounties/gearbox.svg index 8182bbb5..e5e42a67 100644 --- a/public/content/images/bounties/gearbox.svg +++ b/public/content/images/bounties/gearbox.svg @@ -1,7 +1,7 @@ + fill="#f0f0f0"/> diff --git a/public/images/logos/aave.svg b/public/images/logos/aave.svg new file mode 100644 index 00000000..d9c6db12 --- /dev/null +++ b/public/images/logos/aave.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/images/logos/abra.png b/public/images/logos/abra.png new file mode 100644 index 00000000..656b7add Binary files /dev/null and b/public/images/logos/abra.png differ diff --git a/public/images/logos/astaria.png b/public/images/logos/astaria.png new file mode 100644 index 00000000..b90357be Binary files /dev/null and b/public/images/logos/astaria.png differ diff --git a/public/images/logos/beefy.png b/public/images/logos/beefy.png new file mode 100644 index 00000000..0542b598 Binary files /dev/null and b/public/images/logos/beefy.png differ diff --git a/public/images/logos/compound.png b/public/images/logos/compound.png new file mode 100644 index 00000000..68dfd31d Binary files /dev/null and b/public/images/logos/compound.png differ diff --git a/public/images/logos/exactly.png b/public/images/logos/exactly.png new file mode 100644 index 00000000..de9ecccd Binary files /dev/null and b/public/images/logos/exactly.png differ diff --git a/public/images/logos/fuji.png b/public/images/logos/fuji.png new file mode 100644 index 00000000..57902b19 Binary files /dev/null and b/public/images/logos/fuji.png differ diff --git a/public/images/logos/gearbox.svg b/public/images/logos/gearbox.svg index 8182bbb5..e8461659 100644 --- a/public/images/logos/gearbox.svg +++ b/public/images/logos/gearbox.svg @@ -1,7 +1,7 @@ - + + fill="#F0F0F0"/> diff --git a/public/images/logos/instadapp.svg b/public/images/logos/instadapp.svg new file mode 100644 index 00000000..b67e7631 --- /dev/null +++ b/public/images/logos/instadapp.svg @@ -0,0 +1,6 @@ + \ No newline at end of file diff --git a/public/images/logos/makerdao.svg b/public/images/logos/makerdao.svg new file mode 100644 index 00000000..6f3cc561 --- /dev/null +++ b/public/images/logos/makerdao.svg @@ -0,0 +1 @@ +Asset 1 \ No newline at end of file diff --git a/public/images/logos/morpho.png b/public/images/logos/morpho.png new file mode 100644 index 00000000..93afa156 Binary files /dev/null and b/public/images/logos/morpho.png differ diff --git a/public/images/logos/pool_together.jpg b/public/images/logos/pool_together.jpg new file mode 100644 index 00000000..cf617cd8 Binary files /dev/null and b/public/images/logos/pool_together.jpg differ diff --git a/public/images/logos/resonate.svg b/public/images/logos/resonate.svg index fa8afc61..80ad8b7d 100644 --- a/public/images/logos/resonate.svg +++ b/public/images/logos/resonate.svg @@ -1,4 +1,4 @@ - + @@ -7,4 +7,4 @@ - + \ No newline at end of file diff --git a/public/images/logos/sense.svg b/public/images/logos/sense.svg index 1ac657e5..e00ac194 100644 --- a/public/images/logos/sense.svg +++ b/public/images/logos/sense.svg @@ -1,4 +1,4 @@ - + diff --git a/src/components/Block/Alliance.tsx b/src/components/Block/Alliance.tsx index f4280e35..d9530f0d 100644 --- a/src/components/Block/Alliance.tsx +++ b/src/components/Block/Alliance.tsx @@ -8,12 +8,9 @@ import alliance from "@json/alliance.json"; export default function BlockAlliance() { const useOpen = (event: MouseEvent) => { + const currentTarget = event.target as HTMLElement; // @ts-ignore - const {closest} = event.target; - if (!closest("a")) { - // @ts-ignore - window?.open(closest("li")?.dataset.url, "_blank"); - } + !currentTarget.closest("a") && window.open(currentTarget.closest("li")?.dataset.url, "_blank"); }; return ( @@ -86,12 +83,14 @@ export default function BlockAlliance() {

- Funds Raised + + Funds Raised +

The alliance contributes capital to advance the development of the ERC-4626 ecosystem
- $35,000 + $37,000
diff --git a/src/components/Block/Bounties.tsx b/src/components/Block/Bounties.tsx index 6931880b..ef8af68d 100644 --- a/src/components/Block/Bounties.tsx +++ b/src/components/Block/Bounties.tsx @@ -64,7 +64,7 @@ export default function BlockBounties() { ))} -
+
{currentFeature.features.map((feature, featIndex) => (
{ }); }, []); useEffect(() => { + // @ts-ignore const s = document.createElement("script"); s.setAttribute("src", "//platform.twitter.com/widgets.js"); s.setAttribute("async", "true"); s.setAttribute("defer", "true"); s.setAttribute("charset", "utf-8"); + // @ts-ignore document.head.appendChild(s); });