Skip to content

Commit

Permalink
Merge pull request #81 from kom-senapati/master
Browse files Browse the repository at this point in the history
About us issues fixed
  • Loading branch information
subinoybiswas authored Jun 25, 2024
2 parents abfcdab + efe391e commit 550b39a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/aboutus/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export default function Home() {
outerScale={2}
color="194, 198, 204"
/>
<main className=" flex min-h-screen flex-col items-center align-middle justify-between p-24 background content-center w-full ">
<main className=" flex h-screen flex-col items-center align-middle justify-between p-24 background content-center w-full ">
<Button
onPress={handleBack}
className="absolute top-6 left-4"
Expand Down
8 changes: 8 additions & 0 deletions app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ import Instruction from "./components/Instruction";
import Footer from "./components/Footer";
import { FaEnvelope } from "react-icons/fa";
import AnimatedCursor from "react-animated-cursor";
import { BsFillPeopleFill } from "react-icons/bs";
import Link from "next/link";
export default function Home() {
const { isOpen, onOpen, onOpenChange, onClose } = useDisclosure();
const router = useRouter();
Expand Down Expand Up @@ -147,6 +149,12 @@ export default function Home() {
<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 relative gap-2 items-center w-[95vw] md:w-3/4 lg:w-1/2 bg-slate-200/50 p-5 rounded-3xl ">
{/* Instruction activate button */}
<Link href={"/aboutus"}
className="invisible sm:visible fixed right-10 z-20 bottom-40 bg-white bg-opacity-80 rounded-full py-2 px-4 text-black text-xl hover:bg-opacity-100 cursor-pointer font-bold"
style={{ padding: "14px 14px" }}
>
<BsFillPeopleFill size={18} />
</Link>
<div
onClick={() => setReview(true)}
className="invisible sm:visible fixed right-10 z-20 bottom-24 bg-white bg-opacity-80 rounded-full py-2 px-4 text-black text-xl hover:bg-opacity-100 cursor-pointer font-bold"
Expand Down

0 comments on commit 550b39a

Please sign in to comment.