mirror of
https://gitea.gofwd.group/dstrawsb/ballistic-builder.git
synced 2025-12-05 18:26:45 -05:00
75 lines
2.7 KiB
JavaScript
75 lines
2.7 KiB
JavaScript
import React, { Component } from 'react'
|
|
import PropTypes from 'prop-types' //ES6
|
|
import styles from './styles.module.css'
|
|
import List from '@mui/material/List'
|
|
import ListItem from '@mui/material/ListItem';
|
|
import ListItemText from '@mui/material/ListItemText';
|
|
import TypoGraphy from '@mui/material/Typography'
|
|
import Link from 'next/link'
|
|
import { makeStyles } from '@mui/material/styles';
|
|
|
|
const useStyles = makeStyles((theme) => ({
|
|
root: {
|
|
width: '75%',
|
|
maxWidth: 260,
|
|
/* backgroundColor: theme.palette.background.paper, */
|
|
float : 'right',
|
|
marginRight:'2%',
|
|
fontSize : '.80em'
|
|
|
|
|
|
},
|
|
}));
|
|
|
|
export default function FooterLinks() {
|
|
|
|
const classes = useStyles();
|
|
return (
|
|
<div className={classes.root}>
|
|
<TypoGraphy variant="subtitle1" color="inherit" >
|
|
<List component="nav" >
|
|
|
|
<ListItemText inset >
|
|
<TypoGraphy color="inherit" variant="subtitle2">
|
|
<Link href="/info/faq"><a className={styles.navLinks}>FAQ</a></Link>
|
|
</TypoGraphy>
|
|
</ListItemText>
|
|
|
|
<ListItemText inset >
|
|
<TypoGraphy color="inherit" variant="subtitle2">
|
|
<Link href="/info/tos"><a className={styles.navLinks}>Terms Of Service</a></Link>
|
|
</TypoGraphy>
|
|
</ListItemText>
|
|
|
|
<ListItemText inset>
|
|
<TypoGraphy color="inherit" variant="subtitle2">
|
|
<Link href="/info/contactus"><a className={styles.navLinks}>Contact Us</a></Link>
|
|
</TypoGraphy>
|
|
</ListItemText>
|
|
|
|
<ListItemText inset>
|
|
<TypoGraphy color="inherit" variant="subtitle2">
|
|
<Link href="/info/privacypolicy"><a className={styles.navLinks}>Privacy Policy</a></Link>
|
|
</TypoGraphy>
|
|
</ListItemText>
|
|
|
|
<ListItemText inset>
|
|
<TypoGraphy color="inherit" variant="subtitle2">
|
|
<Link href="/info/pip"><a className={styles.navLinks}>Personal Information Policy</a></Link>
|
|
</TypoGraphy>
|
|
</ListItemText>
|
|
|
|
<ListItemText inset>
|
|
<TypoGraphy color="inherit" variant="subtitle2">
|
|
<Link href="/info/disclosure"><a className={styles.navLinks}>Disclosure</a></Link>
|
|
</TypoGraphy>
|
|
</ListItemText>
|
|
|
|
|
|
</List>
|
|
</TypoGraphy>
|
|
</div>
|
|
)
|
|
}
|
|
|