-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathFooter.tsx
More file actions
31 lines (30 loc) · 820 Bytes
/
Footer.tsx
File metadata and controls
31 lines (30 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import { Box, Text, Link } from "@chakra-ui/react";
export default function Footer() {
return (
<Box as="footer">
<Box maxW={"container.xl"} m={"0 auto"} as="section">
<Box
py={4}
m={4}
borderTopColor={"whiteAlpha.100"}
borderTopWidth={1}
textAlign={"end"}
as="article"
>
<Text color="primary.400" fontSize={"sm"}>
Idealizado por{" "}
<Link
isExternal={true}
href={"https://twitch.tv/flaviojmendes"}
color={"primary.500"}
_hover={{ textDecoration: "underline" }}
>
flaviojmendes
</Link>
, desenvolvido com ♥ pela comunidade.
</Text>
</Box>
</Box>
</Box>
);
}