diff --git a/app/components/pages/About.tsx b/app/components/pages/About.tsx
index 46698cf..a92e230 100644
--- a/app/components/pages/About.tsx
+++ b/app/components/pages/About.tsx
@@ -4,41 +4,41 @@ import GitHubFeatured from '../widgets/GitHubFeatured'
import Image from 'next/image'
export default function About() {
- return (
-
-
-
- About Me
-
-
-
- Hey there! I'm Aidan, a web developer and student, and this is my website. I'm passionate about web development (although I'm not great with design) and I love building things with Node.js and Express.
-
-
Academics
-
- In terms of my academic background, I am currently pursuing a degree in computer science at SNHU. I really enjoy learning, though it depends on the subject. I am mostly self-taught when it comes to programming. I prefer this style of learning, especially with programming, as it lets me learn faster and apply creativity much more.
-
-
Hobbies
-
- When I'm not programming, I can typically be found installing another Linux distro on my laptop or flashing a new ROM to my phone. I am also a passionate writer and I like to write creatively in my free time.
-
-
- I am almost always active on 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 GitHub Contributions
-
You can find me on GitHub as ihatenodejs.
-
-
-
-
-
-
-
Featured Projects
-
Here's just four of my top projects.
-
-
+ return (
+
+
+
+ About Me
+
+
+
+ Hey there! I'm Aidan, a web developer and student, and this is my website. I'm passionate about web development (although I'm not great with design) and I love building things with Node.js and Express.
+
+
Academics
+
+ In terms of my academic background, I am currently pursuing a degree in computer science at SNHU. I really enjoy learning, though it depends on the subject. I am mostly self-taught when it comes to programming. I prefer this style of learning, especially with programming, as it lets me learn faster and apply creativity much more.
+
+
Hobbies
+
+ When I'm not programming, I can typically be found installing another Linux distro on my laptop or flashing a new ROM to my phone. I am also a passionate writer and I like to write creatively in my free time.
+
+
+ I am almost always active on 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 GitHub Contributions
+
You can find me on GitHub as ihatenodejs.
+
+
+
- )
+
+
+
Featured Projects
+
Here's just four of my top projects.
+
+
+
+ )
}
\ No newline at end of file
diff --git a/app/components/pages/Contact.tsx b/app/components/pages/Contact.tsx
index 9be45c9..1e37473 100644
--- a/app/components/pages/Contact.tsx
+++ b/app/components/pages/Contact.tsx
@@ -4,55 +4,55 @@ import { faGithub, faTelegram } from '@fortawesome/free-brands-svg-icons'
import { IconDefinition } from '@fortawesome/fontawesome-svg-core'
export default function Contact() {
- return (
-
-
-
- Contact
-
-
-
-
-
-
-
-
-
I'm a busy person
-
- I do a lot of things during the day and I'm not always able to respond to messages right away. Please be patient and remember not to demand things from me... Somehow this is an issue for people :(
-
-
- For the best chance of a response, please send me a message on Telegram. If you've made a pull request on one of my repos, I will most likely respond by the next day. If you've sent me an email, I will most likely respond within three days or less.
-
-
A note about calling and texting
-
- I have a phone number listed above. Please do not call or text me unless you absolutely need to. I will likely not respond, or use an automated recording system to handle your call. No, I haven't provided you my real phone number. I may be able to respond to your call/text, just know this is not checked/used often.
-
-
- If you need to get in touch with me, please send me a message on Telegram or an email.
-
-
-
- )
+ return (
+
+
+
+ Contact
+
+
+
+
+
+
+
+
+
I'm a busy person
+
+ I do a lot of things during the day and I'm not always able to respond to messages right away. Please be patient and remember not to demand things from me... Somehow this is an issue for people :(
+
+
+ For the best chance of a response, please send me a message on Telegram. If you've made a pull request on one of my repos, I will most likely respond by the next day. If you've sent me an email, I will most likely respond within three days or less.
+
+
A note about calling and texting
+
+ I have a phone number listed above. Please do not call or text me unless you absolutely need to. I will likely not respond, or use an automated recording system to handle your call. No, I haven't provided you my real phone number. I may be able to respond to your call/text, just know this is not checked/used often.
+
+
+ If you need to get in touch with me, please send me a message on Telegram or an email.
+
+
+
+ )
}
interface ContactButtonProps {
- href: string;
- icon: IconDefinition;
- label: string;
- className?: string;
+ href: string;
+ icon: IconDefinition;
+ label: string;
+ className?: string;
}
function ContactButton({ href, icon, label, className }: ContactButtonProps) {
- return (
-
-
- {label}
-
- )
+ return (
+
+
+ {label}
+
+ )
}
\ No newline at end of file
diff --git a/app/components/pages/Domains.tsx b/app/components/pages/Domains.tsx
index 7f4d4a3..de5ad89 100644
--- a/app/components/pages/Domains.tsx
+++ b/app/components/pages/Domains.tsx
@@ -3,20 +3,20 @@ import { faLink } from '@fortawesome/free-solid-svg-icons'
import domains from '../../data/domains.json'
export default function About() {
- return (
-
-
-
- My Domains
-
-
- {domains.map(domain => (
-
-
{domain.domain}
-
{domain.usage}
-
- ))}
-
-
- )
+ return (
+
+
+
+ My Domains
+
+
+ {domains.map(domain => (
+
+
{domain.domain}
+
{domain.usage}
+
+ ))}
+
+
+ )
}
\ No newline at end of file
diff --git a/app/components/widgets/GitHubFeatured.tsx b/app/components/widgets/GitHubFeatured.tsx
index 1c2240f..f507abe 100644
--- a/app/components/widgets/GitHubFeatured.tsx
+++ b/app/components/widgets/GitHubFeatured.tsx
@@ -4,25 +4,25 @@ import { faStar, faCodeBranch } from '@fortawesome/free-solid-svg-icons'
import featuredProjects from '../../data/featured.json'
export default function GitHubFeatured() {
- return (
-
- {featuredProjects.map((project) => (
-
-
-
- {project.name}
-
-
{project.description}
-
-
-
View Repo
-
- {project.stars}
- {project.forks}
-
-
-
- ))}
+ return (
+
+ {featuredProjects.map((project) => (
+
+
+
+ {project.name}
+
+
{project.description}
+
+
+
View Repo
+
+ {project.stars}
+ {project.forks}
+
+
- )
+ ))}
+
+ )
}
\ No newline at end of file
diff --git a/app/data/domains.json b/app/data/domains.json
index 53e9a73..b6c749f 100644
--- a/app/data/domains.json
+++ b/app/data/domains.json
@@ -1,47 +1,47 @@
[
- {
- "id": 1,
- "domain": "aidxn.cc",
- "usage": "The home of my primary homepage and website (v3)"
- },
- {
- "id": 2,
- "domain": "aidxn.fun",
- "usage": "My alternative homepage (v2)"
- },
- {
- "id": 3,
- "domain": "pontusmail.org",
- "usage": "My personal email service, free to the public"
- },
- {
- "id": 4,
- "domain": "ihate.college",
- "usage": "One of my fun domains, used for p0ntus mail"
- },
- {
- "id": 5,
- "domain": "pontus.pics",
- "usage": "An unused domain for an upcoming image hosting service"
- },
- {
- "id": 6,
- "domain": "p0ntus.com",
- "usage": "A website for my online persona which hosts a small archive"
- },
- {
- "id": 7,
- "domain": "androidintegrity.org",
- "usage": "A collaborative project to improve Google's Play Integrity"
- },
- {
- "id": 8,
- "domain": "modules.lol",
- "usage": "An 'app store' of Magisk modules and FOSS Android apps"
- },
- {
- "id": 9,
- "domain": "wikitools.cloud",
- "usage": "A collection of tools made by me for Wikipedia"
- }
+ {
+ "id": 1,
+ "domain": "aidxn.cc",
+ "usage": "The home of my primary homepage and website (v3)"
+ },
+ {
+ "id": 2,
+ "domain": "aidxn.fun",
+ "usage": "My alternative homepage (v2)"
+ },
+ {
+ "id": 3,
+ "domain": "pontusmail.org",
+ "usage": "My personal email service, free to the public"
+ },
+ {
+ "id": 4,
+ "domain": "ihate.college",
+ "usage": "One of my fun domains, used for p0ntus mail"
+ },
+ {
+ "id": 5,
+ "domain": "pontus.pics",
+ "usage": "An unused domain for an upcoming image hosting service"
+ },
+ {
+ "id": 6,
+ "domain": "p0ntus.com",
+ "usage": "A website for my online persona which hosts a small archive"
+ },
+ {
+ "id": 7,
+ "domain": "androidintegrity.org",
+ "usage": "A collaborative project to improve Google's Play Integrity"
+ },
+ {
+ "id": 8,
+ "domain": "modules.lol",
+ "usage": "An 'app store' of Magisk modules and FOSS Android apps"
+ },
+ {
+ "id": 9,
+ "domain": "wikitools.cloud",
+ "usage": "A collection of tools made by me for Wikipedia"
+ }
]