-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new
Metal Mania
font for /unauthorized
+ background void image
- Loading branch information
Showing
5 changed files
with
29 additions
and
6 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,18 +1,35 @@ | ||
import { | ||
type MetaFunction, | ||
} from "@remix-run/node"; | ||
import { type MetaFunction } from "@remix-run/node"; | ||
|
||
export const meta: MetaFunction = () => { | ||
return [ | ||
{ title: "Unauthorized • Divinity" }, | ||
{ name: "description", content: "Whatcha doing here lil bro? You ain\'t supposed to be here! 😡" }, | ||
{ | ||
name: "description", | ||
content: "Whatcha doing here lil bro? You ain't supposed to be here! 😡", | ||
}, | ||
]; | ||
}; | ||
|
||
export default function Unauthorized() { | ||
return ( | ||
<main className="relative h-dvh"> | ||
test | ||
<main className="relative flex h-dvh items-center justify-center bg-black"> | ||
<img | ||
className="relative z-10 object-contain mix-blend-luminosity duration-1000 animate-in fade-in" | ||
src="/unauthorized.webp" | ||
alt="Unauthorized" | ||
width="1920" | ||
height="1080" | ||
/> | ||
|
||
<div className="absolute inset-0 z-20 flex flex-col items-center justify-center gap-4 text-center font-metal_mania"> | ||
<h1 className="text-4xl font-bold text-white delay-500 duration-1000 animate-in fade-in slide-in-from-top-1 fill-mode-backwards"> | ||
Unauthorized | ||
</h1> | ||
<p className="max-w-md text-lg text-white delay-500 duration-1000 animate-in fade-in slide-in-from-bottom-1 fill-mode-backwards"> | ||
The void consumes all. You are not supposed to be here. Go back to | ||
where you belong... | ||
</p> | ||
</div> | ||
</main> | ||
); | ||
} |
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
Binary file not shown.
Binary file not shown.
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