Skip to content

Commit

Permalink
Merge branch 'subinoybiswas:master' into invalid-ClippyID-notification
Browse files Browse the repository at this point in the history
  • Loading branch information
satmm authored Jun 17, 2024
2 parents 25604c1 + 648c9a2 commit 42defd6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ docker run -p 3000:3000 -e MONGODB_URI=<your_mongodb_uri> -e MONGO_DB_NAME=<your

## Contributing

If you'd like to contribute to this project, feel free to open an issue or submit a pull request. Contributions are welcome! , please folloe these steps:
If you'd like to contribute to this project, feel free to open an issue or submit a pull request. Contributions are welcome! , please follow these steps:

1. Fork the repository.
2. Create a new branch for your feature or bug fix.
Expand Down
10 changes: 6 additions & 4 deletions app/components/getPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@ import {
NextUIProvider,
Snippet,
} from "@nextui-org/react";
import { FaRegCopy , FaArrowLeft } from "react-icons/fa";
import { useEffect, useState } from "react";

import { FaRegCopy } from "react-icons/fa";
import { Spinner } from "@nextui-org/react";
import { useRouter } from "next/navigation";
export default function GetPage({ clippyId }: { clippyId: string }) {
Expand Down Expand Up @@ -84,15 +83,18 @@ export default function GetPage({ clippyId }: { clippyId: string }) {
};
return (
<NextUIProvider>

<main className="flex min-h-screen flex-col items-center align-middle justify-between p-24 background content-center w-full">
<div className="flex flex-col gap-2 items-center w-[95vw] sm:w-1/2 bg-slate-200/50 p-5 rounded-3xl">
<Button
className="self-start"
className="self-start flex flex-row items-center justify-center"
color="primary"
onClick={() => {
router.push("/");
}}

>
<FaArrowLeft />
Return
</Button>
<Input
Expand Down Expand Up @@ -125,7 +127,7 @@ export default function GetPage({ clippyId }: { clippyId: string }) {
}
}}
>
<FaRegCopy></FaRegCopy>
<FaRegCopy/>
</Button>
</>
) : null}
Expand Down

0 comments on commit 42defd6

Please sign in to comment.