diff --git a/src/components/shared/mui/media-card/media-card.component.jsx b/src/components/shared/mui/media-card/media-card.component.jsx index cf4cde9..e7dc6e4 100644 --- a/src/components/shared/mui/media-card/media-card.component.jsx +++ b/src/components/shared/mui/media-card/media-card.component.jsx @@ -13,15 +13,15 @@ export default function MediaCard({ styles, header, imageUrl, imageTitle, path, const navigate = useNavigate() return ( - navigate(path) }> - - navigate(path) }> + - { - + { + + { header } @@ -29,15 +29,6 @@ export default function MediaCard({ styles, header, imageUrl, imageTitle, path, { content } - - - {/* */} - - ); diff --git a/src/components/signed-out/sign-in-form/sign-in-form.component.jsx b/src/components/signed-out/sign-in-form/sign-in-form.component.jsx index 6236822..c32eab8 100644 --- a/src/components/signed-out/sign-in-form/sign-in-form.component.jsx +++ b/src/components/signed-out/sign-in-form/sign-in-form.component.jsx @@ -70,13 +70,19 @@ const SignInForm = () => { -
- - +
+
+
+ +
+ +
+ +
+
-
); }; diff --git a/src/components/signed-out/sign-in-form/sign-in-form.styles.scss b/src/components/signed-out/sign-in-form/sign-in-form.styles.scss index 3a0dfe3..ab25cc7 100644 --- a/src/components/signed-out/sign-in-form/sign-in-form.styles.scss +++ b/src/components/signed-out/sign-in-form/sign-in-form.styles.scss @@ -1,16 +1,17 @@ .sign-in-container { - display: flex; - flex-direction: column; - width: 400px; - margin-top: 2%; + display: block; + // flex-direction: column; + justify-content: center; + align-items: center; + // width: 400px; + margin: 2% 20% 2% 20%; h2 { margin: 10px 0; } - .buttons-container { - display: flex; - justify-content: space-between; + .button-container { width: 400px; + margin-bottom: 4%; } } \ No newline at end of file diff --git a/src/components/signed-out/sign-up-form/sign-up-form.styles.scss b/src/components/signed-out/sign-up-form/sign-up-form.styles.scss index fa2bbfc..77e4c76 100644 --- a/src/components/signed-out/sign-up-form/sign-up-form.styles.scss +++ b/src/components/signed-out/sign-up-form/sign-up-form.styles.scss @@ -1,8 +1,10 @@ .sign-up-container { - display: flex; - flex-direction: column; - width: 380px; - margin-top: 2%; + display: block; + // flex-direction: column; + justify-content: center; + align-items: center; + // width: 380px; + margin: 2% 20% 2% 20%; h2 { margin: 10px 0; diff --git a/src/pages/shared/home/home.component.jsx b/src/pages/shared/home/home.component.jsx index 39ab149..8022bdb 100644 --- a/src/pages/shared/home/home.component.jsx +++ b/src/pages/shared/home/home.component.jsx @@ -11,9 +11,10 @@ import { selectCurrentUser } from "../../../store/shared/user/user.selector.js"; import { COLOR_CODES, NAV_LINKS } from "../../../utils/constants/shared.constants.js"; const styles = { - width: 475, - height: 500, - backgroundColor: COLOR_CODES.general["0"] + width: 350, + height: 450, + backgroundColor: COLOR_CODES.general["0"], + marginBottom: "6%" } const Home = () => { @@ -79,38 +80,54 @@ const Home = () => { return ( - - +
+
+
+ +
- - - - +
+ +
- - +
+ +
- +
+ +
- -
+
+ +
- - +
+ +
- +
+ +
- -
+
+ +
+ +
+ +
+
+
); }; diff --git a/src/routes/signed-out/authentication/authentication.component.jsx b/src/routes/signed-out/authentication/authentication.component.jsx index 3c0f685..33f0fe9 100644 --- a/src/routes/signed-out/authentication/authentication.component.jsx +++ b/src/routes/signed-out/authentication/authentication.component.jsx @@ -3,11 +3,38 @@ import "./authentication.styles.scss"; import SignInForm from "../../../components/signed-out/sign-in-form/sign-in-form.component"; import SignUpForm from "../../../components/signed-out/sign-up-form/sign-up-form.component"; +import ItemTabs from "../../../components/shared/mui/tabs/tabs.component"; +import LoginIcon from '@mui/icons-material/Login'; +import AppRegistrationIcon from '@mui/icons-material/AppRegistration'; + const AuthenticationRoute = () => { + const tabList = [ + { + value: "sign-in-form", + icon: , + label: "Sign In" + }, + { + value: "sign-up-form", + icon: , + label: "Register" + } + ] + + const panelList = [ + { + value: "sign-in-form", + children: + }, + { + value: "sign-up-form", + children: + } + ] + return (
- - +
); }; diff --git a/src/routes/signed-out/authentication/authentication.styles.scss b/src/routes/signed-out/authentication/authentication.styles.scss index 2a44f31..bb95d4a 100644 --- a/src/routes/signed-out/authentication/authentication.styles.scss +++ b/src/routes/signed-out/authentication/authentication.styles.scss @@ -1,6 +1,6 @@ .authentication-container { - display: flex; - width: 900px; - justify-content: space-between; - margin: 30px auto; + // display: flex; + // width: 900px; + // justify-content: space-between; + // margin: 30px auto; } \ No newline at end of file