diff options
| author | Pinapelz <yukais@pinapelz.com> | 2024-10-05 17:28:05 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2024-10-05 17:28:05 -0700 |
| commit | 17ae03ea65839ca7d4321e546cd3ee371cf58dbd (patch) | |
| tree | 08a6af042d093a6c2c0f8d92c83ba1038deffb5d /src/components/Footer/Footer.tsx | |
| parent | 6f813c4ad4caa877ae679bb619715930c6e3dbb4 (diff) | |
fix build
Diffstat (limited to 'src/components/Footer/Footer.tsx')
| -rw-r--r-- | src/components/Footer/Footer.tsx | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/components/Footer/Footer.tsx b/src/components/Footer/Footer.tsx index 7c4f062..1c501d8 100644 --- a/src/components/Footer/Footer.tsx +++ b/src/components/Footer/Footer.tsx @@ -1,19 +1,24 @@ import React from "react"; +import Link from 'next/link'; + const Footer = () => { return ( <footer> <div className="text-center mt-4"> - <a className="font-bold hover:underline text-blue-600 animate-pulse"href="/about">About</a> + <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. + the channels listed here <br /> </p> <p className="p-4"> <a - className="hover:underline text-bold" + className="hover:underline text-bold text-blue-600" href="https://github.com/pinapelz/Nijitrack" > Source Code |
