-
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.
* Some clean up, added Spotify icon for offline/loading state * Minor clean up in Mobile view * Updating about text. * Fixing max width for the Tab Panel * P-18: fixed bug when type is not track * P-20: Add real time spotify streaming progress bar. (#21) * P-23: Added experience section. (#24) * P-26: Added placeholder projects section. (#27) * Wip footer. * develop: some footer updates, brb. * develop: simple footer.
- Loading branch information
1 parent
20949c5
commit 67070ec
Showing
3 changed files
with
76 additions
and
52 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,20 @@ | ||
import { Typography, Container, Stack, IconButton } from "@mui/material"; | ||
import MTLogo from "../assets/mt.png"; | ||
|
||
export default function Footer() { | ||
return ( | ||
<Container component="footer" maxWidth="md" sx={{ padding: 2 }}> | ||
<Stack alignItems="center" spacing={1}> | ||
<IconButton | ||
component="a" | ||
color="secondary" | ||
sx={{ img: { maxWidth: 50 } }} | ||
href="#" | ||
> | ||
<img src={MTLogo} alt="Maria Torrente" /> | ||
</IconButton> | ||
<Typography variant="caption"> © Maria Torrente 2024</Typography> | ||
</Stack> | ||
</Container> | ||
); | ||
} |
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