Skip to content

Commit d3734d4

Browse files
authored
Merge pull request #108 from 0xHashstack/development
(feat) discord link change
2 parents 6a625f7 + 62f4311 commit d3734d4

File tree

3 files changed

+3
-30
lines changed

3 files changed

+3
-30
lines changed

src/constants/urls.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export const EXTERNAL_URLS = {
1717
WHITEPAPER:
1818
'https://github.com/0xHashstack/whitepaper/blob/main/Open protocol/v0.2/Open protocol v0.2.7.pdf',
1919
MEDIUM: 'https://hashstack.medium.com',
20-
DISCORD: 'https://discord.gg/aPAH4mkT',
20+
DISCORD: 'https://hashstack.community/',
2121
} as const;
2222

2323
export const BANNER_URL = {

src/features/landing/components/Footer.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import DiscordLogoWhite from '@/assets/Icons/discordLogoWhite';
1313
import GithubIconWhite from '@/assets/Icons/githubIconWhite';
1414
import FileIconWhite from '@/assets/Icons/fileIconWhite';
1515
import QueryIconWhite from '@/assets/Icons/queryIconWhite';
16+
import { EXTERNAL_URLS } from '@/constants/urls';
1617

1718
const footerLinks = [
1819
{ text: 'Home', href: '/', isActive: true },
@@ -37,7 +38,7 @@ const socialLinks = [
3738
IconWhite: TwitterIconWhite,
3839
},
3940
{
40-
href: 'https://discord.gg/aPAH4mkT',
41+
href: EXTERNAL_URLS.DISCORD,
4142
Icon: DicordLogo,
4243
IconWhite: DiscordLogoWhite,
4344
},

src/features/landing/components/RunningBanner.tsx

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -48,34 +48,6 @@ const RunningBanner = () => {
4848
},
4949
];
5050

51-
const socials = [
52-
{
53-
href: 'https://x.com/0xhashstack',
54-
Icon: TwitterIcon,
55-
IconWhite: TwitterIconWhite,
56-
},
57-
{
58-
href: 'https://discord.gg/aPAH4mkT',
59-
Icon: DicordLogo,
60-
IconWhite: DiscordLogoWhite,
61-
},
62-
{
63-
href: 'https://github.com/0xHashstack/',
64-
Icon: GithubIcon,
65-
IconWhite: GithubIconWhite,
66-
},
67-
{
68-
href: 'https://drive.google.com/drive/folders/1ysun5L45Ib4MZAOGr8v9BK-CpZuMpXJr',
69-
Icon: FileIcon,
70-
IconWhite: FileIconWhite,
71-
},
72-
{
73-
href: 'https://docs.hashstack.finance/hub/faqs',
74-
Icon: QueryIcon,
75-
IconWhite: QueryIconWhite,
76-
},
77-
];
78-
7951
return (
8052
<div className='flex flex-col mt-10 gap-5 w-screen overflow-clip'>
8153
<div className='flex sm:hidden justify-center'>

0 commit comments

Comments
 (0)