..
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 | import Link from 'next/link'
const Footer = () => {
return (
<footer className="footer footer-center p-2 text-base-content">
<div>
<p>
<span>Built on works by </span>
<Link
className="link link-accent no-underline"
href="https://cryogenicplanet.tech"
target="_blank">
CryogenicPlanet
</Link>
and
<Link
className="link link-accent no-underline"
href="https://github.com/wei/"
target="_blank">
Wei
</Link>
<span>. © 2023 </span>
<Link
className="link link-accent no-underline"
href="https://thatcomputerscientist.com/"
target="_blank">
That Computer Scientist
</Link>
<span>. Created with 💖 by </span>
<Link
className="link link-accent no-underline"
href="https://github.com/luciferreeves/"
target="_blank">
@luciferreeves
</Link>
<span>.</span>
</p>
</div>
</footer>
)
}
export default Footer
|
|