-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1e51a8b
commit f4a2f25
Showing
21 changed files
with
1,465 additions
and
824 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
44 changes: 9 additions & 35 deletions
44
src/@core/layouts/components/shared-components/footer/FooterContent.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,25 @@ | ||
// ** MUI Imports | ||
import Box from '@mui/material/Box' | ||
import Link from '@mui/material/Link' | ||
import { Theme } from '@mui/material/styles' | ||
import Typography from '@mui/material/Typography' | ||
import useMediaQuery from '@mui/material/useMediaQuery' | ||
|
||
const FooterContent = () => { | ||
// ** Var | ||
const hidden = useMediaQuery((theme: Theme) => theme.breakpoints.down('md')) | ||
// const hidden = useMediaQuery((theme: Theme) => theme.breakpoints.down('md')) | ||
|
||
return ( | ||
<Box sx={{ display: 'flex', flexWrap: 'wrap', alignItems: 'center', justifyContent: 'space-between' }}> | ||
<Typography sx={{ mr: 2 }}> | ||
{`© ${new Date().getFullYear()}, Made with `} | ||
<Box component='span' sx={{ color: 'error.main' }}> | ||
❤️ | ||
</Box> | ||
{` by `} | ||
<Link target='_blank' href='https://themeselection.com/'> | ||
ThemeSelection | ||
{`©${new Date().getFullYear()}, `} | ||
<Link href='mailto:[email protected]'> | ||
Live Concert Database, LLC. | ||
</Link> | ||
|
||
{ } All code is | ||
<Link target='_blank' href='https://github.com/lcdborg'> | ||
{' open source at GitHub. '} | ||
</Link> | ||
</Typography> | ||
{hidden ? null : ( | ||
<Box sx={{ display: 'flex', flexWrap: 'wrap', alignItems: 'center', '& :not(:last-child)': { mr: 4 } }}> | ||
<Link | ||
target='_blank' | ||
href='https://github.com/themeselection/materio-mui-react-nextjs-admin-template-free/blob/main/LICENSE' | ||
> | ||
MIT License | ||
</Link> | ||
<Link target='_blank' href='https://themeselection.com/'> | ||
More Themes | ||
</Link> | ||
<Link | ||
target='_blank' | ||
href='https://github.com/themeselection/materio-mui-react-nextjs-admin-template-free/blob/main/README.md' | ||
> | ||
Documentation | ||
</Link> | ||
<Link | ||
target='_blank' | ||
href='https://github.com/themeselection/materio-mui-react-nextjs-admin-template-free/issues' | ||
> | ||
Support | ||
</Link> | ||
</Box> | ||
)} | ||
</Box> | ||
) | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.