Skip to content

Commit

Permalink
Merge pull request #65 from 05hiteshbansal/master
Browse files Browse the repository at this point in the history
changes
  • Loading branch information
subinoybiswas authored Jun 15, 2024
2 parents 39a2655 + b812305 commit 648c9a2
Showing 1 changed file with 6 additions and 4 deletions.
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 648c9a2

Please sign in to comment.