-
zkSync Ecosystem
+
{t('HOME.title')}
+
- Gas Price: 10 wei · ERC-20 Transfer: $10
+ {`${t('HOME.gasPrice')}: 10 wei ${t('HOME.transfer')} $10`}
);
diff --git a/src/containers/Dashboard/index.tsx b/src/containers/Dashboard/index.tsx
index e968b94..eb023e4 100644
--- a/src/containers/Dashboard/index.tsx
+++ b/src/containers/Dashboard/index.tsx
@@ -1,8 +1,11 @@
+import { useTranslation } from 'next-i18next';
import { useState } from 'react';
+
import { SearchBar, Table, Title } from '~/components';
import { useData } from '~/hooks';
export const Dashboard = () => {
+ const { t } = useTranslation();
const { ecosystemData } = useData();
const [searchTerm, setSearchTerm] = useState