import React from 'react'; import { Box, Typography, Link, Divider, IconButton } from '@mui/material'; import { GitHub, Twitter, Book } from '@mui/icons-material'; import styled from '@emotion/styled'; const FooterContainer = styled(Box)(({ theme }) => ({ padding: theme.spacing(4), backgroundColor: theme.palette.background.paper, marginTop: 'auto', })); const Footer = () => { return ( EnlightenQalb Exploring the wisdom of Al-Ghazali through modern AI © {new Date().getFullYear()} EnlightenQalb Privacy Policy | {' '} Terms ); }; export default Footer;