Skip to content
This repository was archived by the owner on Dec 26, 2023. It is now read-only.

Commit 22bfaa2

Browse files
committed
add url to the href in links
1 parent d767f03 commit 22bfaa2

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

frontend/src/Components/Footer/index.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -139,15 +139,15 @@ const Footer = () => {
139139
<Stack align={'flex-start'}>
140140
<ListHeader>Social</ListHeader>
141141
<ButtonGroup>
142-
<a href="https://twitter.com/developer_dao">
142+
<Link target={'_blank'} href="https://twitter.com/developer_dao">
143143
<FaTwitter aria-label="Twitter" />
144-
</a>
145-
<a href="https://t.co/k407RuG8eV">
144+
</Link>
145+
<Link target={'_blank'} href="https://t.co/k407RuG8eV">
146146
<FaDiscord aria-label="Discord" />
147-
</a>
148-
<a href="https://github.com/Developer-DAO">
147+
</Link>
148+
<Link target={'_blank'} href="https://github.com/Developer-DAO">
149149
<FaGithub aria-label="Github" />
150-
</a>
150+
</Link>
151151
</ButtonGroup>
152152
</Stack>
153153
</SimpleGrid>

frontend/src/Components/Intro/index.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,12 @@ const IntroComponent = () => {
8888
py={{ base: '1rem', xl: '1.5rem' }}
8989
borderRadius={{ base: '.438rem', xl: '0.688rem' }}
9090
fontSize={{ base: '0.75rem', xl: '1.25rem' }}
91+
onClick={() => {
92+
window.open(
93+
'https://developerdao.notion.site/How-to-use-Snapshot-32692309faf446ddb2a898f22050fb5f#05f55b4052c044169402a443b36945ff',
94+
'_blank',
95+
);
96+
}}
9197
>
9298
<Box as={BsFillLightningChargeFill} mr=".5rem" color="#FFD666" />
9399
Read our snapshot

0 commit comments

Comments
 (0)