diff --git a/public/screen.svg b/public/screen.svg index c4d230d..2c6c39c 100644 --- a/public/screen.svg +++ b/public/screen.svg @@ -62,50 +62,13 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - + diff --git a/src/actions/commands.json b/src/actions/commands.json index bccb447..684904f 100644 --- a/src/actions/commands.json +++ b/src/actions/commands.json @@ -11,12 +11,12 @@ }, { "cmd": "github", - "value": "https:github.com/n0rrman", + "value": "https://github.com/n0rrman", "actionCode": "redirect" }, { "cmd": "discord", - "value": "https:discord.com/users/235864356980523009", + "value": "https://discord.com/users/235864356980523009", "actionCode": "redirect" }, { @@ -26,17 +26,17 @@ }, { "cmd": "linkedin", - "value": "https:linkedin.com/in/henrik-norrman/", + "value": "https://linkedin.com/in/henrik-norrman/", "actionCode": "redirect" }, { "cmd": "source code", - "value": "https:github.com/n0rrman/henriknorrman.com", + "value": "https://github.com/n0rrman/henriknorrman.com", "actionCode": "redirect" }, { "cmd": "rm -rf /", - "value": "https:youtube.com/watch?v=dQw4w9WgXcQ", + "value": "https://youtube.com/watch?v=dQw4w9WgXcQ", "actionCode": "redirect" }, { diff --git a/src/components/contact-section.tsx b/src/components/contact-section.tsx index 31f98fd..b403664 100644 --- a/src/components/contact-section.tsx +++ b/src/components/contact-section.tsx @@ -1,11 +1,6 @@ -import { FaGithub, FaGithubSquare } from "react-icons/fa"; import { MdAlternateEmail } from "react-icons/md"; -import { BsDiscord } from "react-icons/bs"; -import { RxDiscordLogo } from "react-icons/rx"; import { IoLogoGithub } from "react-icons/io"; -import { SiAiohttp } from "react-icons/si"; -import { CgWebsite } from "react-icons/cg"; -import { FaLinkedinIn, FaLinkedin } from "react-icons/fa6"; +import { FaLinkedin } from "react-icons/fa6"; import { AiFillDiscord } from "react-icons/ai"; import { main } from "@/app/fonts"; import LinkCard from "./link-card"; @@ -13,7 +8,7 @@ import LinkCard from "./link-card"; export default function ContactSection() { return (

External Links

diff --git a/src/components/link-card.tsx b/src/components/link-card.tsx index d9b7da0..0793272 100644 --- a/src/components/link-card.tsx +++ b/src/components/link-card.tsx @@ -1,14 +1,5 @@ -import { FaGithub } from "react-icons/fa"; -import { MdAlternateEmail } from "react-icons/md"; -import { BsDiscord } from "react-icons/bs"; -import { RxDiscordLogo } from "react-icons/rx"; -import { SiFrontendmentor } from "react-icons/si"; -import { SiAiohttp } from "react-icons/si"; -import { CgWebsite } from "react-icons/cg"; -import { FaLinkedinIn } from "react-icons/fa6"; -import { IoLogoLinkedin } from "react-icons/io"; import { FaArrowRight } from "react-icons/fa"; -import { main } from "@/app/fonts"; +import Link from "next/link"; interface LinkCardProps { title: string; @@ -30,8 +21,9 @@ export default function LinkCard({ arrowColour, }: LinkCardProps) { return ( -
{icon}
@@ -47,6 +39,6 @@ export default function LinkCard({

{username}

-
+ ); } diff --git a/src/components/terminal-screen.tsx b/src/components/terminal-screen.tsx index 12669e7..4310fa5 100644 --- a/src/components/terminal-screen.tsx +++ b/src/components/terminal-screen.tsx @@ -38,7 +38,7 @@ export default function TerminalScreen({ return (
{ inputRef!.current!.focus(); }} @@ -59,17 +59,17 @@ export default function TerminalScreen({ {prompt}
- +
*/}
diff --git a/src/components/terminal.tsx b/src/components/terminal.tsx index 6ed482f..989ba41 100644 --- a/src/components/terminal.tsx +++ b/src/components/terminal.tsx @@ -6,7 +6,6 @@ import { useState, startTransition, useRef, useEffect } from "react"; import { terminalState, CommandAction } from "@/actions"; import { ActionCode } from "@/actions/action-codes"; import TerminalScreen from "./terminal-screen"; -import { VscOutput } from "react-icons/vsc"; export default function Terminal() { const inputRef = useRef(null); @@ -53,7 +52,7 @@ export default function Terminal() { return { id, input, - output: `Opening ${output.split(":")[1]}`, + output: `Opening ${output}`, actionCode, }; }