From 84cf72a4ab70f7ced8b556b7407e508f9b68f319 Mon Sep 17 00:00:00 2001 From: Alisina Bahadori Date: Mon, 2 Dec 2024 11:20:13 -0500 Subject: [PATCH] Update Libraries.tsx - Add Elixir Ethers --- app/src/components/Libraries.tsx | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/app/src/components/Libraries.tsx b/app/src/components/Libraries.tsx index 81f7d6bd..79ac304a 100644 --- a/app/src/components/Libraries.tsx +++ b/app/src/components/Libraries.tsx @@ -1,7 +1,7 @@ import Link from 'next/link'; import { ReactNode } from 'react'; import { FaJava, FaReact, FaRust } from 'react-icons/fa'; -import { SiDelphi, SiKotlin, SiNuget, SiPython } from 'react-icons/si'; +import { SiDelphi, SiElixir, SiKotlin, SiNuget, SiPython } from 'react-icons/si'; import { TbBrandGolang, TbBrandJavascript } from 'react-icons/tb'; type Language = { @@ -165,6 +165,18 @@ export const ensLibraries: Language[] = [ }, ], }, + { + name: 'Elixir', + logo: , + libraries: [ + { + href: 'https://github.com/ExWeb3/elixir_ethers', + name: 'Ethers', + description: '', + logo: undefined, // - + }, + ], + }, ]; export function Libraries() {