-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDndNotFoundPage.jsx
More file actions
62 lines (57 loc) · 2.15 KB
/
DndNotFoundPage.jsx
File metadata and controls
62 lines (57 loc) · 2.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import React from 'react';
import { motion } from 'framer-motion';
import DndLayout from '../../components/dnd/DndLayout';
import Seo from '../../components/Seo';
import { WarningCircleIcon } from '@phosphor-icons/react';
function DndNotFoundPage() {
return (
<DndLayout>
<Seo
title="404 - Lost in the Dungeon! | Fezcodex"
description="The page you are looking for does not exist in this D&D realm."
keywords={[
'Fezcodex',
'd&d',
'dnd',
'404',
'not found',
'lost',
'dungeon',
]}
/>
<div className="max-w-4xl mx-auto px-6 py-32 text-center relative">
<motion.div
initial={{ opacity: 0, scale: 0.9 }}
animate={{ opacity: 1, scale: 1 }}
transition={{ duration: 0.5 }}
>
<div className="flex justify-center mb-12">
<WarningCircleIcon
size={80}
className="text-dnd-gold animate-pulse"
weight="duotone"
/>
</div>
<h1 className="text-7xl md:text-9xl font-playfairDisplay italic font-black dnd-gold-gradient-text uppercase tracking-tighter mb-8">
LOST_404
</h1>
<div className="dnd-parchment-container p-12 md:p-16 shadow-2xl">
<div className="dnd-ornate-corner dnd-ornate-corner-tl !w-8 !h-8" />
<div className="dnd-ornate-corner dnd-ornate-corner-tr !w-8 !h-8" />
<div className="dnd-ornate-corner dnd-ornate-corner-bl !w-8 !h-8" />
<div className="dnd-ornate-corner dnd-ornate-corner-br !w-8 !h-8" />
<p className="text-2xl font-arvo text-dnd-crimson font-bold uppercase tracking-widest mb-6">
Stranded in the Ether
</p>
<p className="text-lg font-arvo text-dnd-text/80 leading-relaxed max-w-lg mx-auto">
The chronicle you seek has been lost to time or never existed in
these archives. Perhaps you took a wrong turn at the last
crossroads.
</p>
</div>
</motion.div>
</div>
</DndLayout>
);
}
export default DndNotFoundPage;