Skip to content
This repository was archived by the owner on Aug 2, 2025. It is now read-only.

Commit ca242d7

Browse files
committed
docs: add deployed by Vercel message
1 parent ff6382c commit ca242d7

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

src/routes/Landing/Footer.tsx

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import {
55
ButtonGroup,
66
IconButton,
77
Link,
8+
Box,
89
} from "@chakra-ui/react";
910
import { TimetablLogo } from "../../components/Nav/Nav";
1011
import { FaGithub } from "react-icons/fa";
@@ -44,6 +45,27 @@ export const Footer = () => {
4445
MIT License.
4546
</Link>
4647
</Text>
48+
<Box
49+
mt="6"
50+
fontSize="sm"
51+
fontWeight="semibold"
52+
display="inline-block"
53+
bg="black"
54+
color="white"
55+
px="4"
56+
py="2"
57+
rounded="lg"
58+
alignSelf={"center"}
59+
as="a"
60+
target="_blank"
61+
href="https://vercel.com"
62+
>
63+
Deployed by{" "}
64+
<span role="img" aria-label="Vercel logo">
65+
66+
</span>{" "}
67+
Vercel
68+
</Box>
4769
</Stack>
4870
);
4971
};

0 commit comments

Comments
 (0)