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

Commit 4a42e05

Browse files
committed
Add url to the links
1 parent fc60f5f commit 4a42e05

File tree

2 files changed

+15
-7
lines changed

2 files changed

+15
-7
lines changed

frontend/src/Components/Footer/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ const Footer = () => {
8383
<Link
8484
textDecoration="underline"
8585
_hover={{ textDecoration: 'none' }}
86-
href={'#'}
86+
href={'https://www.youtube.com/channel/UCoYk_C5So-Tec1OGzbGKhRw'}
8787
isExternal
8888
>
8989
Podcast

frontend/src/Components/Header/index.tsx

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ const MenuItem = ({
119119
to: string;
120120
}) => {
121121
return (
122-
<Link href={to}>
122+
<Link target="_blank" href={to}>
123123
<Text display="block" fontSize={'20px'} {...rest}>
124124
{children}
125125
</Text>
@@ -137,11 +137,19 @@ const MenuLinks = ({ isOpen }: { isOpen: boolean }) => {
137137
direction={{ base: 'column', md: 'row' }}
138138
pt={[8, 4, 0, 0]}
139139
>
140-
<MenuItem to="/">Latest Updates</MenuItem>
141-
<MenuItem to="/how">Events</MenuItem>
142-
<MenuItem to="/DAO Wiki">DAO Wiki </MenuItem>
143-
<MenuItem to="/pricing">Job Board </MenuItem>
144-
<MenuItem to="/pricing">Projects </MenuItem>
140+
<MenuItem to="https://twitter.com/developer_dao">
141+
Latest Updates
142+
</MenuItem>
143+
<MenuItem to="/">Events</MenuItem>
144+
<MenuItem to="https://developerdao.notion.site/developerdao/Developer-DAO-Wiki-eff4dcb00bef46fbaa93e9e4cf940e2e">
145+
DAO Wiki{' '}
146+
</MenuItem>
147+
<MenuItem to="https://developerdao.pallet.com/jobs">
148+
Job Board{' '}
149+
</MenuItem>
150+
<MenuItem to="https://developerdao.notion.site/Projects-c2240a6c0b0c41bea285f1ef9629f6db">
151+
Projects{' '}
152+
</MenuItem>
145153
<Switch
146154
size="md"
147155
display={{ base: 'block', md: 'none' }}

0 commit comments

Comments
 (0)