Skip to content

Commit

Permalink
feat: add link to mod guide
Browse files Browse the repository at this point in the history
  • Loading branch information
bigint committed Feb 14, 2024
1 parent 21ede37 commit 9deff71
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions apps/web/src/components/Staff/SignupContract/index.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
import type { NextPage } from 'next';

import MetaTags from '@components/Common/MetaTags';
import { APP_NAME } from '@hey/data/constants';
import { ArrowTopRightOnSquareIcon } from '@heroicons/react/24/outline';
import {
APP_NAME,
HEY_LENS_SIGNUP,
POLYGONSCAN_URL
} from '@hey/data/constants';
import { PAGEVIEW } from '@hey/data/tracking';
import { Card, GridItemEight, GridItemFour, GridLayout } from '@hey/ui';
import { Leafwatch } from '@lib/leafwatch';
import Link from 'next/link';
import { useEffect } from 'react';
import Custom404 from 'src/pages/404';
import { useFeatureFlagsStore } from 'src/store/persisted/useFeatureFlagsStore';
Expand Down Expand Up @@ -39,7 +45,15 @@ const SignupContract: NextPage = () => {
</GridItemFour>
<GridItemEight className="space-y-5">
<Card>
<div className="p-5 text-lg font-bold">Signup Contract</div>
<div className="flex items-center space-x-2 p-5 text-lg font-bold">
<div>Signup Contract</div>
<Link
href={`${POLYGONSCAN_URL}/address/${HEY_LENS_SIGNUP}`}
target="_blank"
>
<ArrowTopRightOnSquareIcon className="text-brand-500 size-4" />
</Link>
</div>
<div className="divider" />
<div className="space-y-5 p-5">
<LensCredits />
Expand Down

1 comment on commit 9deff71

@vercel
Copy link

@vercel vercel bot commented on 9deff71 Feb 14, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

web – ./apps/web

web-git-main-heyxyz.vercel.app
heyxyz.vercel.app
hey.xyz
web-heyxyz.vercel.app

Please sign in to comment.