Skip to content

Commit fc10bae

Browse files
authored
Merge pull request #185 from Developer-DAO/add-privacy
Add Privacy Policy link. Fix footer layout.
2 parents ad8f140 + a9bf0d1 commit fc10bae

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

components/footer/Footer.tsx

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,13 @@ export default function Footer() {
1818
>
1919
<Container
2020
as={Stack}
21-
maxW={'6xl'}
21+
maxW={'2xl'}
2222
py={4}
2323
direction={{ base: 'column', md: 'row' }}
2424
spacing={4}
2525
justify={{ base: 'center', md: 'space-between' }}
2626
align={{ base: 'center', md: 'center' }}
2727
>
28-
<Text>Developer DAO Foundation © {new Date().getFullYear()}</Text>
2928
<Stack direction={'row'} spacing={3}>
3029
<NextLink
3130
href={
@@ -58,6 +57,7 @@ export default function Footer() {
5857
</Container>
5958

6059
<Container maxW={'6xl'} py={4} centerContent>
60+
<Text>Developer DAO Foundation © {new Date().getFullYear()}</Text>
6161
<Text align="center">
6262
Website content licensed under{' '}
6363
<NextLink
@@ -82,6 +82,16 @@ export default function Footer() {
8282
</NextLink>
8383
.
8484
</Text>
85+
<Text>
86+
<NextLink
87+
href={'https://www.developerdao.com/privacy-policy'}
88+
passHref
89+
>
90+
<Link isExternal textDecoration="underline">
91+
Privacy Policy
92+
</Link>
93+
</NextLink>
94+
</Text>
8595
</Container>
8696
</Box>
8797
)

0 commit comments

Comments
 (0)