File size: 688 Bytes
945c6bb
 
 
 
 
 
 
 
 
 
 
 
 
5786921
 
945c6bb
 
 
5786921
 
 
 
2e847b0
945c6bb
5786921
 
945c6bb
 
 
 
 
 
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
32
33
import Box from "@mui/material/Box";
import Image from "next/image";
import { Divider, Link } from "@mui/material";

const Footer = () => {
  return (
    <Box
      component="footer"
      sx={{
        display: "flex",
        justifyContent: "center",
        gap: 1,
        alignItems: "center",
        mt: 8,
        mb: 4,
      }}
    >
      <Link
        href="https://failfa.st"
        display="flex"
        alignItems="center"
        rel="noopener"
        target="_blank"
      >
        <Box sx={{ mr: 0.5 }}>Powered by</Box>{" "}
        <Image src="/failfast.svg" alt="failfast Logo" width="32" height="32" />
      </Link>
    </Box>
  );
};

export default Footer;