Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
t0rbik committed Oct 23, 2024
1 parent 09d104a commit bf1fd4e
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 28 deletions.
2 changes: 1 addition & 1 deletion src/components/providers/ThemeProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,4 +124,4 @@ export const ThemeProvider = ({ children }: { children: React.ReactNode }) => {
{children}
</ThemeContext.Provider>
);
};
};
52 changes: 26 additions & 26 deletions src/components/utilities/Utilities.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,31 +6,31 @@ import { useChain } from "@/hooks/useChain";
import { windowOpen } from "@/utils/windowOpen";

const utilities = [
{
label: "Alchemix Stats",
author: "Barree",
url: "https://alchemix-stats.com/",
image: "alchemix_stats.png",
},
{
label: "Self-Repaying-ENS",
author: "Wary",
url: "https://ens.alchemix.fi/",
image: "srens.png",
},
{
label: "AMO Harvest Tool",
author: "Amrit & TBD",
url: "https://alchemix-multisig.netlify.app/",
image: "amo_harvester.png",
},
{
label: "Contract Params Dashboard",
author: "Build3rsLabs",
url: "https://alchemix-dashboard-frontend-lovat.vercel.app/",
image: "contract_params_dashboard.png",
}
];
{
label: "Alchemix Stats",
author: "Barree",
url: "https://alchemix-stats.com/",
image: "alchemix_stats.png",
},
{
label: "Self-Repaying-ENS",
author: "Wary",
url: "https://ens.alchemix.fi/",
image: "srens.png",
},
{
label: "AMO Harvest Tool",
author: "Amrit & TBD",
url: "https://alchemix-multisig.netlify.app/",
image: "amo_harvester.png",
},
{
label: "Contract Params Dashboard",
author: "Build3rsLabs",
url: "https://alchemix-dashboard-frontend-lovat.vercel.app/",
image: "contract_params_dashboard.png",
},
];

export const Utilities = () => {
const chain = useChain();
Expand All @@ -45,7 +45,7 @@ export const Utilities = () => {
{utilities.map((utility) => (
<div
key={utility.label}
className="w-full sm:w-[48%] lg:w-1/4 rounded border border-grey10inverse bg-grey15inverse dark:border-grey10 dark:bg-grey15"
className="w-full rounded border border-grey10inverse bg-grey15inverse sm:w-[48%] lg:w-1/4 dark:border-grey10 dark:bg-grey15"
>
<p className="border-b border-grey10inverse px-4 py-2 dark:border-grey10">
{utility.label}
Expand Down
2 changes: 1 addition & 1 deletion src/routes/utilities.lazy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ function UtilitiesRoute() {
<Utilities />
</Page>
);
}
}

0 comments on commit bf1fd4e

Please sign in to comment.