-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a cool beta checker which won't burn your eyes
- Loading branch information
Showing
1 changed file
with
27 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,36 @@ | ||
import Link from 'next/link'; | ||
import Link from "next/link"; | ||
|
||
const NotBetaTester = () => { | ||
return ( | ||
<div className="flex flex-col items-center justify-center min-h-screen bg-white"> | ||
<div className="max-w-md p-8 mx-auto bg-white rounded-lg shadow-lg"> | ||
<h1 className="text-2xl font-semibold mb-4">You are not a beta tester</h1> | ||
<p className="text-gray-700 mb-6">Sorry, you do not have the required role to access this page.</p> | ||
<Link href="/"> | ||
<a className="bg-blue-500 text-white px-4 py-2 rounded-lg hover:bg-blue-600 transition duration-300">Home</a> | ||
<div className="flex flex-col items-center justify-center min-h-screen bg-gray-700"> | ||
<div className="max-w-md p-8 mx-auto bg-gray-800 rounded-lg shadow-lg"> | ||
<h1 className="text-2xl font-semibold mb-4 text-white"> | ||
You are not a Beta Tester | ||
</h1> | ||
<p className="text-gray-300 mb-6"> | ||
Sorry, you do not have the | ||
<span className="inline-block ml-1"> | ||
<span | ||
className="text-white px-2 py-1 rounded-lg" | ||
style={{ | ||
color: "rgb(0, 244, 85)", | ||
backgroundColor: "rgba(0, 244, 85, 0.1)", | ||
}} | ||
> | ||
<span>@🧪 Beta Tester</span> | ||
</span> | ||
</span> | ||
role to access this feature. | ||
</p> | ||
<Link | ||
href="/" | ||
className="bg-blue-600 text-white px-4 py-2 rounded-lg hover:bg-blue-700 transition duration-300" | ||
> | ||
Home{" "} | ||
</Link> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default NotBetaTester; | ||
export default NotBetaTester; |