diff --git a/CustomerWebApp/src/assets/icons/LogoHorizontal.js b/CustomerWebApp/src/assets/icons/LogoHorizontal.js index a6bbcc7..ac53f7a 100644 --- a/CustomerWebApp/src/assets/icons/LogoHorizontal.js +++ b/CustomerWebApp/src/assets/icons/LogoHorizontal.js @@ -2,12 +2,24 @@ import * as React from "react"; function LogoHorizontal(props) { return ( - + - + {"enatega"} diff --git a/CustomerWebApp/src/components/Footer/Footer.js b/CustomerWebApp/src/components/Footer/Footer.js index e86b396..519edb8 100644 --- a/CustomerWebApp/src/components/Footer/Footer.js +++ b/CustomerWebApp/src/components/Footer/Footer.js @@ -1,247 +1,366 @@ -import { Box, Container, Button, Divider, Link, Grid, makeStyles, Typography } from "@material-ui/core"; +// import { Box, Container, Button, Divider, Link, Grid, makeStyles, Typography } from "@material-ui/core"; +// import React from "react"; +// import clsx from "clsx"; +// import FacebookIcon from "@material-ui/icons/Facebook"; +// import InstagramIcon from "@material-ui/icons/Instagram"; +// import ArrowRightIcon from "@material-ui/icons/ArrowRight"; +// import EnategaLogo from "../../assets/images/enategaFooter.png"; +// import AppleIcon from "../../assets/icons/AppleIcon"; +// import LogoHorizontal from "../../assets/icons/LogoHorizontal"; + +// const useStyles = makeStyles((theme) => ({ +// titleStyle: { +// ...theme.typography.subtitle2, +// color: theme.palette.text.disabled, +// }, +// copyRightText: { +// ...theme.typography.subtitle2, +// fontWeight: theme.typography.fontWeightRegular, +// color: theme.palette.primary.light, +// paddingRight: "1vw", +// fontSize: "1vw", +// }, +// footerText: { +// ...theme.typography.caption, +// color: theme.palette.text.disabled, +// margin: "0px 10px", +// "&:hover": { +// color: theme.palette.primary.main, +// }, +// }, +// iconStyles: { +// color: theme.palette.text.disabled, +// "&:hover": { +// color: theme.palette.primary.main, +// }, +// }, +// font700: { +// fontWeight: theme.typography.fontWeightMedium, +// }, +// btnText: { +// width: "inherit", +// fontSize: "1vw", +// textTransform: "inherit", +// padding: theme.spacing(0, 1), +// }, +// marginB: { +// marginBottom: theme.spacing(2), +// }, +// loginBtn: { +// marginBottom: theme.spacing(2), +// padding: theme.spacing(1, 1, 1, 2), +// borderRadius: 20, +// backgroundColor: theme.palette.grey[100], +// "&:disabled": { +// backgroundColor: theme.palette.grey[100], +// }, +// "&:hover": { +// opacity: 0.9, +// backgroundColor: theme.palette.grey[50], +// }, +// }, +// btmBtn: { +// marginTop: theme.spacing(5), +// padding: theme.spacing(1, 3, 1, 3), +// borderRadius: "4vw", +// borderStyle: "solid", +// borderColor: theme.palette.text.primary, +// borderWidth: 2, +// "&:disabled": { +// backgroundColor: theme.palette.grey[100], +// }, +// "&:hover": { +// opacity: 0.9, +// backgroundColor: theme.palette.grey[50], +// }, +// }, +// })); + +// function Footer() { +// const classes = useStyles(); +// return ( +// <> +// +// +// +// +// {/* */} +// +// +// +// +// +// +// +// +// +// +// +// +// Facebook +// +// +// +// +// +// LinkedIn +// +// +// +// +// +// Instagram +// +// +// +// +// +// Youtube +// +// +// +// {/* +// +// +// +// +// */} +// +// +// {/* */} + +// {/* */} +// +// +// +// +// Enatega {" "}© {new Date().getFullYear()} All right reserved +// +// +// Privacy Policy +// Terms&Conditions +// +// +// +// +// ); +// } + +// export default Footer; + import React from "react"; -import clsx from "clsx"; -import FacebookIcon from "@material-ui/icons/Facebook"; -import InstagramIcon from "@material-ui/icons/Instagram"; +import { + Box, + Button, + Container, + Link, + makeStyles, + Typography, +} from "@material-ui/core"; import ArrowRightIcon from "@material-ui/icons/ArrowRight"; -import EnategaLogo from "../../assets/images/enategaFooter.png"; -import AppleIcon from "../../assets/icons/AppleIcon"; +import AppleIcon from "@material-ui/icons/Apple"; import LogoHorizontal from "../../assets/icons/LogoHorizontal"; const useStyles = makeStyles((theme) => ({ - titleStyle: { - ...theme.typography.subtitle2, - color: theme.palette.text.disabled, + footer: { + backgroundColor: "black", + paddingTop: theme.spacing(4), + paddingBottom: theme.spacing(2), + color: "white", }, - copyRightText: { - ...theme.typography.subtitle2, - fontWeight: theme.typography.fontWeightRegular, - color: theme.palette.primary.light, - paddingRight: "1vw", - fontSize: "1vw", + footerContainer: { + display: "flex", + flexDirection: "column", + alignItems: "center", + textAlign: "center", }, - footerText: { - ...theme.typography.caption, - color: theme.palette.text.disabled, - margin: "0px 10px", - "&:hover": { - color: theme.palette.primary.main, - }, - }, - iconStyles: { - color: theme.palette.text.disabled, - "&:hover": { - color: theme.palette.primary.main, - }, - }, - font700: { - fontWeight: theme.typography.fontWeightMedium, - }, - btnText: { - width: "inherit", - fontSize: "1vw", - textTransform: "inherit", - padding: theme.spacing(0, 1), - }, - marginB: { - marginBottom: theme.spacing(2), - }, - loginBtn: { - marginBottom: theme.spacing(2), - padding: theme.spacing(1, 1, 1, 2), - borderRadius: 20, - backgroundColor: theme.palette.grey[100], - "&:disabled": { - backgroundColor: theme.palette.grey[100], - }, - "&:hover": { - opacity: 0.9, - backgroundColor: theme.palette.grey[50], - }, - }, - btmBtn: { - marginTop: theme.spacing(5), - padding: theme.spacing(1, 3, 1, 3), + button: { + backgroundColor: "white", + margin: theme.spacing(2, 0), borderRadius: "4vw", - borderStyle: "solid", - borderColor: theme.palette.text.primary, - borderWidth: 2, - "&:disabled": { - backgroundColor: theme.palette.grey[100], - }, + border: "2px solid white", + fontSize: "1rem", + padding: theme.spacing(1, 3), + textTransform: "none", "&:hover": { - opacity: 0.9, backgroundColor: theme.palette.grey[50], }, }, + logo: { + width: "15%", + marginBottom: theme.spacing(2), + }, + socialLinks: { + marginTop: theme.spacing(2), + "& a": { + color: "white", + margin: theme.spacing(0, 2), + textDecoration: "none", + "&:hover": { + color: theme.palette.primary.main, + }, + }, + }, + copyright: { + marginTop: theme.spacing(2), + "& p": { + color: "white", + margin: theme.spacing(0, 1), + fontSize: "0.9rem", + }, + }, })); function Footer() { const classes = useStyles(); - return ( - <> - - - - - {/* */} - - - - - - - - - - - - - Facebook - - - - - - LinkedIn - - - - - - Instagram - - - - - - Youtube - - - - {/* - - - - - */} - - - {/* */} - {/* */} + return ( + ); }