-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDndFooter.jsx
More file actions
49 lines (44 loc) · 2 KB
/
DndFooter.jsx
File metadata and controls
49 lines (44 loc) · 2 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
import React, { useContext } from 'react';
import { DndContext } from '../../context/DndContext';
import { ScrollIcon } from '@phosphor-icons/react';
const DndFooter = () => {
const { bgImageName } = useContext(DndContext);
return (
<footer className="relative mt-12 md:mt-24 border-t-2 border-dnd-gold bg-dnd-crimson/95 py-12 md:py-16 px-6 text-white">
<div className="max-w-7xl mx-auto grid grid-cols-1 md:grid-cols-3 gap-8 md:gap-12 items-center text-center md:text-left">
<div className="space-y-4">
<div className="flex justify-center md:justify-start">
<span className="text-4xl font-playfairDisplay font-black uppercase tracking-tighter dnd-gold-gradient-text">
S & F
</span>
</div>
<p className="font-arvo text-[10px] uppercase tracking-[0.4em] text-white/70">
From Serfs and Frauds
</p>
</div>
<div className="flex flex-col items-center gap-4 text-white">
<ScrollIcon size={32} weight="duotone" className="opacity-60" />
<p className="font-arvo italic text-sm text-white max-w-xs text-center leading-relaxed">
"Every chronicle is a living memory of those who braved the dark."
</p>
</div>
<div className="space-y-4 md:text-right">
<p className="font-arvo text-[9px] uppercase tracking-widest text-white">
Digital Archive Kernel // v0.8.7
</p>
<p className="font-arvo text-[9px] uppercase tracking-widest text-white">
Wallpaper Source //{' '}
<span className="text-white font-bold">
{bgImageName || 'Default_Vault'}
</span>
</p>
<div className="h-px w-12 bg-dnd-gold ml-auto opacity-50" />
<p className="font-arvo text-[10px] uppercase tracking-[0.2em] text-white">
© {new Date().getFullYear()} Archives of the Realm
</p>
</div>
</div>
</footer>
);
};
export default DndFooter;