Skip to content

Commit

Permalink
📦 up deps and added more info
Browse files Browse the repository at this point in the history
  • Loading branch information
shelcia committed Mar 5, 2023
1 parent 8efac2c commit ba4c004
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 5 deletions.
4 changes: 2 additions & 2 deletions backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
"dotenv": "^16.0.2",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"joi": "^17.7.1",
"joi": "^17.8.3",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.9.1",
"mongoose": "^6.10.1",
"nodemailer": "^6.9.1",
"uuid": "^9.0.0"
}
Expand Down
27 changes: 24 additions & 3 deletions frontend/src/layout/AuthLayout.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import {
CardContent,
Container,
Grid,
IconButton,
Link,
List,
ListItem,
Expand All @@ -16,6 +17,7 @@ import {
} from "@mui/material";
import CustomToggle from "../components/CustomToggle";
import { MdStarRate } from "react-icons/md";
import { FiGithub } from "react-icons/fi";
import Grad1 from "../assets/home/gradient-1.svg";
import Grad2 from "../assets/home/gradient-2.svg";

Expand All @@ -36,6 +38,11 @@ const AuthLayout = ({ children }) => {
>
Mocker
</Typography>
<Link href="https://github.com/shelcia/mocker" target="_blank">
<IconButton color="primary" style={{ cursor: "pointer" }}>
<FiGithub size={"1rem"} />
</IconButton>
</Link>
<Box sx={{ display: "flex" }}>
<Link
href="https://mocker-docs.vercel.app/docs/intro"
Expand All @@ -53,7 +60,7 @@ const AuthLayout = ({ children }) => {
display: "flex",
justifyContent: "center",
alignItems: "center",
height: "100vh",
height: "90vh",
}}
>
<Grid container component="main">
Expand All @@ -67,6 +74,21 @@ const AuthLayout = ({ children }) => {
</Grid>
</Grid>
</Container>
<Grid
container
component="footer"
sx={{
display: "flex",
justifyContent: "center",
alignItems: "center",
height: "10vh",
}}
>
Developed by
<Link href="https://shelcia-dev.me/" target="_blank" ml={1}>
Shelcia
</Link>
</Grid>
</React.Fragment>
);
};
Expand All @@ -89,7 +111,7 @@ const Intro = () => {
},
{
key: 4,
name: "Schema Options",
name: "Customise Schema Options",
},
];

Expand All @@ -113,7 +135,6 @@ const Intro = () => {
faker.js
</Link>
</Typography>

<List dense={true}>
{featureList.map((feature) => (
<ListItem key={feature.key}>
Expand Down

3 comments on commit ba4c004

@vercel
Copy link

@vercel vercel bot commented on ba4c004 Mar 5, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

mocker-docs – ./docs

mocker-docs.vercel.app
mocker-docs-shelcia.vercel.app
mocker-docs-git-master-shelcia.vercel.app

@vercel
Copy link

@vercel vercel bot commented on ba4c004 Mar 5, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

mocker – ./frontend

mocker-gen.vercel.app
mocker-shelcia.vercel.app
mocker-git-master-shelcia.vercel.app

@vercel
Copy link

@vercel vercel bot commented on ba4c004 Mar 5, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

mocker-backend – ./backend

mocker-backend-git-master-shelcia.vercel.app
mocker-backend-shelcia.vercel.app
mocker-backend.vercel.app

Please sign in to comment.