-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Asded forbidden page and alert on like and dislike
- Loading branch information
1 parent
786d6f5
commit 5c788e7
Showing
4 changed files
with
22 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { Ghost, KeyRound, Lock } from "lucide-react"; | ||
import React from "react"; | ||
|
||
const Forbidden = () => { | ||
return ( | ||
<div className="flex min-h-[70vh] relative flex-col gap-5 justify-center items-center "> | ||
<Ghost size={60} className=" absolute right-10 top-6" /> | ||
<h1 className=" text-6xl font-bold">403</h1> | ||
<p className=" font-semibold text-2xl">Sorry Pal , Cant let you in</p> | ||
<KeyRound size={60} className=" absolute bottom-20 right-10" /> | ||
<Lock size={60} className=" absolute bottom-20 left-20" /> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Forbidden; |