Skip to content

Commit

Permalink
Edit links
Browse files Browse the repository at this point in the history
  • Loading branch information
ryangoree committed Jan 19, 2024
1 parent a1d505b commit c77a36c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 17 deletions.
10 changes: 0 additions & 10 deletions apps/nft-interface/components/HeroSection/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import Link from "next/link";
import { ReactElement } from "react";
import { Fade } from "react-awesome-reveal";
import { isFeatureEnabled } from "src/features";
import { COUNCIL_URL } from "src/urls";

export const HeroSection = (): ReactElement => {
return (
Expand All @@ -35,15 +34,6 @@ export const HeroSection = (): ReactElement => {
<Link passHref href="/mint">
<PrimaryButton as="a">Start minting</PrimaryButton>
</Link>
<a
target="_blank"
href={COUNCIL_URL}
rel="noopener noreferrer"
>
<PrimaryButton hasBorder as="a">
The Council
</PrimaryButton>
</a>
</ButtonWrapper>
)}
</ContentCenter>
Expand Down
3 changes: 1 addition & 2 deletions apps/nft-interface/components/HeroSection/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,7 @@ export const HeroSectionContainer = styled.section`
`;

export const ButtonWrapper = styled.div`
display: grid;
grid-template-columns: 1fr 1fr;
display: flex;
align-items: center;
max-width: max-content;
margin: 0 auto;
Expand Down
8 changes: 5 additions & 3 deletions apps/nft-interface/components/Layout/Footer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import Logo from "public/assets/svg/logo.svg";
import { ReactElement } from "react";
import { Fade } from "react-awesome-reveal";
import {
COUNCIL_DELEGATE_URL,
ELEMENT_GOV_URL,
COUNCIL_DOC_URL,
COUNCIL_URL,
DISCORD_URL,
Expand Down Expand Up @@ -54,9 +54,11 @@ export const Footer = (): ReactElement => {
</div>
<div>
<h4>Governance</h4>
<ExternalLink href={COUNCIL_URL}>Council</ExternalLink>
<ExternalLink href={COUNCIL_DELEGATE_URL}>Delegate</ExternalLink>
<ExternalLink href={ELEMENT_GOV_URL}>
Element Governance
</ExternalLink>
<ExternalLink href={COUNCIL_DOC_URL}>Documentation</ExternalLink>
<ExternalLink href={COUNCIL_URL}>Council Framework</ExternalLink>
</div>
<div>
<h4>Social</h4>
Expand Down
4 changes: 2 additions & 2 deletions apps/nft-interface/src/urls.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { BigNumber } from "ethers";

export const DISCORD_URL = "https://discord.gg/pvnUHuAsQ2";
export const TWITTER_URL = "https://twitter.com/Element_DAO";
export const COUNCIL_URL = "https://gov.element.fi/";
export const COUNCIL_DELEGATE_URL = "https://gov.element.fi/voters";
export const COUNCIL_URL = "https://council.delv.tech/";
export const ELEMENT_GOV_URL = "https://gov.element.fi/voters";
export const COUNCIL_DOC_URL =
"https://docs.element.fi/governance-council/council-protocol-overview";
export const ADDRESS_SCREEN_URL =
Expand Down

0 comments on commit c77a36c

Please sign in to comment.