import React from 'react'; import { Paper, Box, Container, Grid, Typography, Link, Divider, IconButton, Stack, useMediaQuery, } from '@mui/material'; import { styled, useTheme } from '@mui/material/styles'; import { Facebook, Twitter, LinkedIn, Instagram, YouTube, Email, LocationOn, Copyright, } from '@mui/icons-material'; // Styled components const FooterContainer = styled(Paper)(({ theme }) => ({ backgroundColor: theme.palette.primary.main, color: theme.palette.primary.contrastText, padding: theme.spacing(6, 0, 4), marginTop: theme.spacing(4), borderRadius: 0, })); const FooterLink = styled(Link)(({ theme }) => ({ color: theme.palette.primary.contrastText, textDecoration: 'none', '&:hover': { textDecoration: 'underline', color: theme.palette.action.active, }, display: 'block', marginBottom: theme.spacing(1), })); const FooterHeading = styled(Typography)(({ theme }) => ({ fontWeight: 600, marginBottom: theme.spacing(2), color: theme.palette.primary.contrastText, })); const ContactItem = styled(Box)(({ theme }) => ({ display: 'flex', alignItems: 'center', marginBottom: theme.spacing(1.5), })); // Footer component const Footer = () => { const theme = useTheme(); const isMobile = useMediaQuery(theme.breakpoints.down('md')); const currentYear = new Date().getFullYear(); return ( {/* About Company */} BACKSTORY Helping candidates share their professional journey and connect with the right employers through compelling backstories. window.open('https://facebook.com/', '_blank')} > window.open('https://twitter.com/', '_blank')} > window.open('https://linkedin.com/', '_blank')} > window.open('https://instagram.com/', '_blank')} > window.open('https://youtube.com/', '_blank')} > {/* Quick Links */} For Candidates Create Profile Backstory Editor Resume Builder Career Resources Interview Tips {/* Quick Links */} For Employers Post a Job Search Candidates Company Profile Recruiting Tools Pricing Plans {/* Contact */} Company About Us Our Team Blog Press Careers Contact Us {/* Newsletter */} Email {/* +1 (800) 555-1234 */} Beaverton, OR 97003 {/* Bottom Footer */} {currentYear} James P. Ketrenos. All rights reserved. Terms of Service Privacy Policy Accessibility Sitemap ); }; export { Footer };