File size: 1,758 Bytes
0509f82
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import React from 'react';
import { Box, Typography, Container, Link, Divider } from '@mui/material';

function Footer() {
  return (
    <Box 

      component="footer" 

      sx={{ 

        py: 3, 

        mt: 4, 

        bgcolor: '#f5f5f5'

      }}

    >

      <Divider />

      <Container maxWidth="lg">

        <Box sx={{ 

          display: 'flex', 

          flexDirection: { xs: 'column', md: 'row' }, 

          justifyContent: 'space-between',

          alignItems: 'center',

          textAlign: { xs: 'center', md: 'left' },

          mt: 2

        }}>

          <Typography variant="body2" color="text.secondary">

            © {new Date().getFullYear()} Movie Review Sentiment Analysis

          </Typography>

          

          <Box sx={{ 

            display: 'flex', 

            gap: 2, 

            mt: { xs: 2, md: 0 }

          }}>

            <Link 

              href="https://cohere.com/" 

              target="_blank" 

              rel="noopener noreferrer"

              color="inherit"

              underline="hover"

            >

              Powered by Cohere AI

            </Link>

            <Link 

              href="#" 

              color="inherit"

              underline="hover"

            >

              About

            </Link>

            <Link 

              href="#" 

              color="inherit"

              underline="hover"

            >

              Terms

            </Link>

            <Link 

              href="#" 

              color="inherit"

              underline="hover"

            >

              Privacy

            </Link>

          </Box>

        </Box>

      </Container>

    </Box>
  );
}

export default Footer;