blob: 1c501d8b7cc30cd4f1497b67071a9d07e66d5ce8 (
plain) (
blame)
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
|
import React from "react";
import Link from 'next/link';
const Footer = () => {
return (
<footer>
<div className="text-center mt-4">
<Link href="/about">
<p className="font-bold hover:underline text-blue-600 animate-pulse">About</p>
</Link>
<p className="text-m">
Created by Pinapelz <br/>
This page is in no way affiliated with Phase Connect or with any of
the channels listed here
<br />
</p>
<p className="p-4">
<a
className="hover:underline text-bold text-blue-600"
href="https://github.com/pinapelz/Nijitrack"
>
Source Code
</a>
<br />
</p>
</div>
</footer>
);
};
export default Footer;
|