blob: 9248ea0417557b60a3e2322ec57230ef27462a1d (
plain)
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
|
import { useAppSelector } from "@/hooks";
const Footer = () => {
const bpuid = useAppSelector(state => state.app.bpuid)
const assignment_id = useAppSelector(state => state.app.assignment_id)
return (
<div className="grid gap-1 grid-cols-1
md:grid-cols-3
text-xs">
<div>
<p>help: <a
href={`mailto:support@jamesbillings67.com?subject=AMT Support Request: (${(bpuid ?? '-')}) ${(assignment_id ?? '–')}`}>
support@jamesbillings67.com
</a>
</p>
</div>
<div>
<p>made with <span className="text-rose-500">♥</span> by <a
className="hover:cursor-pointer hover:text-pink"
href="https://instagram.com/x0xMaximus"
target="_blank">Max Nanis</a>
</p>
</div>
<div>
<p>open source</p>
</div>
</div>
)
}
export default Footer
|