Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/constants/urls.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const EXTERNAL_URLS = {
WHITEPAPER:
'https://github.com/0xHashstack/whitepaper/blob/main/Open protocol/v0.2/Open protocol v0.2.7.pdf',
MEDIUM: 'https://hashstack.medium.com',
DISCORD: 'https://discord.gg/aPAH4mkT',
DISCORD: 'https://hashstack.community/',
} as const;

export const BANNER_URL = {
Expand Down
3 changes: 2 additions & 1 deletion src/features/landing/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import DiscordLogoWhite from '@/assets/Icons/discordLogoWhite';
import GithubIconWhite from '@/assets/Icons/githubIconWhite';
import FileIconWhite from '@/assets/Icons/fileIconWhite';
import QueryIconWhite from '@/assets/Icons/queryIconWhite';
import { EXTERNAL_URLS } from '@/constants/urls';

const footerLinks = [
{ text: 'Home', href: '/', isActive: true },
Expand All @@ -37,7 +38,7 @@ const socialLinks = [
IconWhite: TwitterIconWhite,
},
{
href: 'https://discord.gg/aPAH4mkT',
href: EXTERNAL_URLS.DISCORD,
Icon: DicordLogo,
IconWhite: DiscordLogoWhite,
},
Expand Down
28 changes: 0 additions & 28 deletions src/features/landing/components/RunningBanner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,34 +48,6 @@ const RunningBanner = () => {
},
];

const socials = [
{
href: 'https://x.com/0xhashstack',
Icon: TwitterIcon,
IconWhite: TwitterIconWhite,
},
{
href: 'https://discord.gg/aPAH4mkT',
Icon: DicordLogo,
IconWhite: DiscordLogoWhite,
},
{
href: 'https://github.com/0xHashstack/',
Icon: GithubIcon,
IconWhite: GithubIconWhite,
},
{
href: 'https://drive.google.com/drive/folders/1ysun5L45Ib4MZAOGr8v9BK-CpZuMpXJr',
Icon: FileIcon,
IconWhite: FileIconWhite,
},
{
href: 'https://docs.hashstack.finance/hub/faqs',
Icon: QueryIcon,
IconWhite: QueryIconWhite,
},
];

return (
<div className='flex flex-col mt-10 gap-5 w-screen overflow-clip'>
<div className='flex sm:hidden justify-center'>
Expand Down
Loading