Skip to content

Commit

Permalink
handling builder anniversary nft
Browse files Browse the repository at this point in the history
  • Loading branch information
brendan-defi committed Nov 8, 2024
1 parent 3cdcb4c commit c22ddf5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion apps/web/app/(base-org)/builder-anniversary-nft/page.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import CryptoProviders from 'apps/web/app/CryptoProviders';
import { BuilderNftHero } from 'apps/web/src/components/BuilderNft/BuilderNftHero';
import type { Metadata } from 'next';

Expand All @@ -13,7 +14,9 @@ export const metadata: Metadata = {
export default async function About() {
return (
<main className="flex w-full flex-col items-center bg-black">
<BuilderNftHero />
<CryptoProviders>
<BuilderNftHero />
</CryptoProviders>
</main>
);
}

0 comments on commit c22ddf5

Please sign in to comment.