generated from mrviniciux/react18-nextjs-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(menu-footer): improved menu footer
- Loading branch information
mrviniciux
committed
Nov 7, 2024
1 parent
304bdf9
commit de878ed
Showing
6 changed files
with
48 additions
and
5 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
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import { Box, Typography } from '@mui/material'; | ||
import LanguageSelector from '../LanguageSelector'; | ||
import Link from 'next/link'; | ||
|
||
function FooterMenu() { | ||
return ( | ||
<Box> | ||
<LanguageSelector labeled /> | ||
|
||
<Typography variant="caption" paddingLeft={2}> | ||
Developed by:{' '} | ||
<Link href={'https://github.com/mrviniciux'}>@mrviniciux</Link> - 2024 | ||
</Typography> | ||
</Box> | ||
); | ||
} | ||
|
||
export default FooterMenu; |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
export { default } from './FooterMenu'; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,5 +6,8 @@ | |
}, | ||
"orders": { | ||
"title": "Orders" | ||
}, | ||
"menu": { | ||
"languages": "Languages:" | ||
} | ||
} |
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 |
---|---|---|
|
@@ -6,5 +6,8 @@ | |
}, | ||
"orders": { | ||
"title": "Pedidos" | ||
}, | ||
"menu": { | ||
"languages": "Idiomas:" | ||
} | ||
} |