diff --git a/app/phone/page.tsx b/app/phone/page.tsx
index d43731a..2898d7a 100644
--- a/app/phone/page.tsx
+++ b/app/phone/page.tsx
@@ -7,7 +7,7 @@ import { MdOutlineAndroid } from "react-icons/md"
import { LuPackageOpen } from "react-icons/lu"
import { RiTelegram2Fill } from "react-icons/ri"
import Image from "next/image"
-import Link from "next/link"
+import Link from "@/components/objects/Link"
import { FaStarHalfStroke, FaStar } from "react-icons/fa6"
export default function About() {
diff --git a/components/objects/Link.tsx b/components/objects/Link.tsx
new file mode 100644
index 0000000..85c7ce6
--- /dev/null
+++ b/components/objects/Link.tsx
@@ -0,0 +1,22 @@
+import { default as NextLink } from 'next/link'
+
+interface LinkProps {
+ href: string
+ className?: string
+ target?: string
+ rel?: string
+ children: React.ReactNode
+}
+
+export default function Link(props: LinkProps) {
+ return (
+
+ {props.children}
+
+ )
+}
\ No newline at end of file
diff --git a/components/pages/About.tsx b/components/pages/About.tsx
index 0101b06..52ccda0 100644
--- a/components/pages/About.tsx
+++ b/components/pages/About.tsx
@@ -4,7 +4,7 @@ import { User, Smartphone } from 'lucide-react'
import FeaturedRepos from '../widgets/FeaturedRepos'
import Image from 'next/image'
import { useState } from 'react'
-import Link from 'next/link'
+import Link from '@/components/objects/Link'
import Button from '../objects/Button'
export default function About() {
@@ -40,7 +40,7 @@ export default function About() {
I consider maintaining my technology as a hobby as well, as I devote a lot of time to it. I currently run Gentoo Linux on my Thinkpad T470s, which does not use a single bin package. I am very proud of this laptop, despite it's constant need for compiling updates.
- I am almost always active on my Gitea instance and GitHub and make daily contributions to several of my repositories. I am a big fan of open source software and public domain software (which most of my repos are licensed under). In fact, the website you're currently on is free and open source. It's even under the public domain!
+ I am almost always active on my Gitea instance and GitHub and make daily contributions to several of my repositories. I am a big fan of open source software and public domain software (which most of my repos are licensed under). In fact, the website you're currently on is free and open source. It's even under the public domain!
My Google Pixel 7 Pro (cheetah) runs LineageOS 22.1, and has been one of my favorite additions to my life. It is proudly rooted with KernelSU-Next. It has suffered one drop to it's back on a tile floor.
@@ -57,8 +57,8 @@ export default function About() {
My Gitea/GitHub Contributions
-
Most of my repositories have migrated to LibreCloud Git. My username is aidan.
-
You can find me on GitHub as ihatenodejs.
+
Most of my repositories have migrated to LibreCloud Git. My username is aidan.