Skip to content

Commit d01fa6e

Browse files
committed
added terms of use link
1 parent 192f4c9 commit d01fa6e

File tree

1 file changed

+17
-2
lines changed

1 file changed

+17
-2
lines changed

frontend/src/components/common/Footer.tsx

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,19 @@ import { TwitterIcon } from "../../assets/icons/TwitterSquare";
1616
import Logo from "../../assets/logo.png";
1717
import useIsWebView from "../../utils/useIsWebView";
1818

19+
const TermsOfUse = () => (
20+
<Text
21+
as="a"
22+
href="https://docs.google.com/document/d/1x1O9uNSVD5WU_hRBPIaaI0gULEp4yYnsJoR6L8XEBvM/edit?usp=sharing"
23+
target="_blank"
24+
color="blue.500"
25+
textDecoration="underline"
26+
_hover={{ color: "blue.600" }}
27+
>
28+
Terms of Use
29+
</Text>
30+
);
31+
1932
const Footer = () => {
2033
const isWebView = useIsWebView();
2134

@@ -34,11 +47,12 @@ const Footer = () => {
3447
<Divider orientation="vertical" borderWidth="1.5px" />
3548
</Stack>
3649
<Stack padding="1% 4% 1% 4%">
50+
3751
<Text fontSize="14px" color="#647488" align="center">
3852
Feeding Canadian Kids is a registered Canadian charity. We feed
3953
underserved Canadian kids a nutritious dinner to fill their tummies
4054
so they sleep well, leading to success in school and healthy
41-
futures. Registered Charity Number: 783404882RR0001
55+
futures. Registered Charity Number: 783404882RR0001 - <TermsOfUse />
4256
</Text>
4357
</Stack>
4458
<Stack justifyContent="center">
@@ -88,7 +102,8 @@ const Footer = () => {
88102
<Stack direction="column" h="15%" padding="25px 48px">
89103
<VStack direction="column" padding="1% 4% 1% 4%">
90104
<Text fontSize="14px" color="#647488" align="center">
91-
Feeding Canadian Kids registered Charity Number: 783404882RR0001
105+
Feeding Canadian Kids registered Charity Number: 783404882RR0001 -{" "}
106+
<TermsOfUse />
92107
</Text>
93108
</VStack>
94109
<VStack>

0 commit comments

Comments
 (0)