Skip to content

Commit

Permalink
Added a cool beta checker which won't burn your eyes
Browse files Browse the repository at this point in the history
  • Loading branch information
kyrea committed Aug 9, 2023
1 parent 7897999 commit c59bcd5
Showing 1 changed file with 27 additions and 8 deletions.
35 changes: 27 additions & 8 deletions src/pages/not-beta-tester.js
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>
&nbsp;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;

0 comments on commit c59bcd5

Please sign in to comment.