|
| 1 | +import { Box, Divider, Link, Button, InputBase, Typography, useTheme } from '@mui/material'; |
| 2 | +import { Link as RouterLink } from 'react-router-dom'; |
| 3 | + |
| 4 | +import FlexBetween from '../../components/FlexBetween'; |
| 5 | + |
| 6 | +import './footer.styles.css'; |
| 7 | + |
| 8 | +const Footer = () => { |
| 9 | + return ( |
| 10 | + <> |
| 11 | + <Divider /> |
| 12 | + <Box p='48px 100px 38px 100px'> |
| 13 | + <FlexBetween className='footer' sx={{ alignItems: 'flex-start' }}> |
| 14 | + <Box className='footer__meta' display='flex' flexDirection='column' gap='4.5rem'> |
| 15 | + <Typography variant='h4' className='footer__meta-title'> |
| 16 | + Funiro. |
| 17 | + </Typography> |
| 18 | + <Typography variant='body1' className='footer__meta-content'> |
| 19 | + 400 University Drive Suite 200 Coral Gables, FL 33134 USA |
| 20 | + </Typography> |
| 21 | + </Box> |
| 22 | + |
| 23 | + <Box display='flex' flexDirection='column' gap='3.5rem'> |
| 24 | + <Typography variant='subtitle2' className='subtitle'> |
| 25 | + Links |
| 26 | + </Typography> |
| 27 | + <Box component='nav' display='flex' flexDirection='column' gap='1.5rem'> |
| 28 | + <Link component={RouterLink} to='/' className='nav-item'> |
| 29 | + Home |
| 30 | + </Link> |
| 31 | + <Link component={RouterLink} to='/' className='nav-item'> |
| 32 | + Shop |
| 33 | + </Link> |
| 34 | + <Link component={RouterLink} to='/' className='nav-item'> |
| 35 | + About |
| 36 | + </Link> |
| 37 | + <Link component={RouterLink} to='/' className='nav-item'> |
| 38 | + Contact |
| 39 | + </Link> |
| 40 | + </Box> |
| 41 | + </Box> |
| 42 | + |
| 43 | + <Box display='flex' flexDirection='column' gap='3.5rem'> |
| 44 | + <Typography variant='subtitle2' className='subtitle'> |
| 45 | + Help |
| 46 | + </Typography> |
| 47 | + <Box component='nav' display='flex' flexDirection='column' gap='1.5rem'> |
| 48 | + <Link component={RouterLink} to='/' className='nav-item'> |
| 49 | + Payment Options |
| 50 | + </Link> |
| 51 | + <Link component={RouterLink} to='/' className='nav-item'> |
| 52 | + Returns |
| 53 | + </Link> |
| 54 | + <Link component={RouterLink} to='/' className='nav-item'> |
| 55 | + Policies |
| 56 | + </Link> |
| 57 | + </Box> |
| 58 | + </Box> |
| 59 | + |
| 60 | + <Box display='flex' flexDirection='column' gap='2.5rem'> |
| 61 | + <Typography variant='subtitle2' className='subtitle'> |
| 62 | + Newsletter |
| 63 | + </Typography> |
| 64 | + <Box display='flex' flexDirection='row' gap='1rem'> |
| 65 | + <InputBase |
| 66 | + placeholder='Enter Your Email Address' |
| 67 | + sx={{ |
| 68 | + '& .MuiInputBase-input': { |
| 69 | + p: '0.4rem 0.85rem', |
| 70 | + borderBottom: '1px solid #000', |
| 71 | + borderRadius: '0.35rem', |
| 72 | + }, |
| 73 | + '& .MuiInputBase-input:focus': { |
| 74 | + border: '1px solid #f3f3f3', |
| 75 | + borderBottom: '1px solid #000', |
| 76 | + }, |
| 77 | + }} |
| 78 | + /> |
| 79 | + <Button |
| 80 | + variant='text' |
| 81 | + sx={{ |
| 82 | + '&.MuiButton-text': { |
| 83 | + borderBottom: '1px solid #000', |
| 84 | + color: '#000', |
| 85 | + letterSpacing: '1.25px', |
| 86 | + }, |
| 87 | + }} |
| 88 | + > |
| 89 | + Subscribe |
| 90 | + </Button> |
| 91 | + </Box> |
| 92 | + </Box> |
| 93 | + </FlexBetween> |
| 94 | + <Divider /> |
| 95 | + <Typography variant='subtitle2' sx={{ p: '2.1rem 2.5rem' }}> |
| 96 | + 2023 furino. All rights reverved |
| 97 | + </Typography> |
| 98 | + </Box> |
| 99 | + </> |
| 100 | + ); |
| 101 | +}; |
| 102 | + |
| 103 | +export default Footer; |
0 commit comments