import { makeStyles } from "@material-ui/core/styles"
import Typography from "@material-ui/core/Typography"
import React from "react"
export const Footer: React.FC = ({ children }) => {
const styles = useFooterStyles()
return (
{children}
{`Copyright \u00a9 ${new Date().getFullYear()} Coder Technologies, Inc. All rights reserved.`}
v2 0.0.0-prototype
)
}
const useFooterStyles = makeStyles((theme) => ({
root: {
textAlign: "center",
marginBottom: theme.spacing(5),
},
copyRight: {
backgroundColor: theme.palette.background.default,
margin: theme.spacing(0.25),
},
version: {
backgroundColor: theme.palette.background.default,
margin: theme.spacing(0.25),
},
}))