diff --git a/package.json b/package.json index 2130498..64d8941 100644 --- a/package.json +++ b/package.json @@ -45,5 +45,5 @@ "last 1 safari version" ] }, - "proxy": "http://localhost:3080" + "proxy": "http://localhost:3080/" } diff --git a/src/Album.tsx b/src/Album.tsx index 05b2383..a5dc4e3 100644 --- a/src/Album.tsx +++ b/src/Album.tsx @@ -6,11 +6,9 @@ import CardActions from '@mui/material/CardActions'; import CardMedia from '@mui/material/CardMedia'; import CssBaseline from '@mui/material/CssBaseline'; import Grid from '@mui/material/Grid'; -import Box from '@mui/material/Box'; import Toolbar from '@mui/material/Toolbar'; import Typography from '@mui/material/Typography'; import Container from '@mui/material/Container'; -import Link from '@mui/material/Link'; import {createTheme, Theme, ThemeProvider} from '@mui/material/styles'; import ChipInput from '@sarakusha/material-ui-chip-input'; import IconButton from '@mui/material/IconButton'; @@ -19,20 +17,6 @@ import RefreshIcon from '@mui/icons-material/Refresh'; import RedoIcon from '@mui/icons-material/Redo'; import {useEffect, useState} from "react"; - -function Copyright() { - return ( - - {'Copyright © '} - - Your Website - {' '} - {new Date().getFullYear()} - {'.'} - - ); -} - const theme = createTheme(); type Face = { @@ -122,15 +106,15 @@ export default function Album() {
- + {/* End hero unit */} - + ( + sx={(theme: Theme) => ( { - width: '50%', display: 'flex', flexDirection: 'column', + width: '50%', display: 'inline-flex', flexDirection: 'column', [theme.breakpoints.down('md')]: { - width: '100%', + width: '90%', height: '50%' }, } @@ -146,9 +130,9 @@ export default function Album() { ( { - width: '50%', display: 'flex', flexDirection: 'column', + width: '50%', display: 'inline-flex', flexDirection: 'column', [theme.breakpoints.down('md')]: { - width: '100%', + width: '90%', height: '50%' }, } @@ -175,22 +159,6 @@ export default function Album() {
- {/* Footer */} - - - Footer - - - Something here to give the footer a purpose! - - - - {/* End footer */} ); } \ No newline at end of file