diff --git a/src/components/sections/About.tsx b/src/components/sections/About.tsx index 31bb1da..cfb6729 100644 --- a/src/components/sections/About.tsx +++ b/src/components/sections/About.tsx @@ -1,8 +1,7 @@ import { motion } from 'framer-motion'; import Image from 'next/image'; import { FadeIn } from '../ui/FadeIn'; -import { FaGithub, FaLinkedin } from 'react-icons/fa'; -import { SiPhp, SiJavascript, SiMysql, SiReact, SiNextdotjs, SiTypescript } from 'react-icons/si'; +import { SiPhp, SiJavascript, SiMysql, SiReact } from 'react-icons/si'; import { MdWeb, MdArchitecture, MdDesignServices, MdSpeed } from 'react-icons/md'; interface Tech { @@ -18,10 +17,8 @@ interface Interest { const technologies: Tech[] = [ { name: 'PHP', icon: }, { name: 'JavaScript', icon: }, - { name: 'TypeScript', icon: }, - { name: 'React', icon: }, - { name: 'Next.js', icon: }, - { name: 'MySQL', icon: } + { name: 'MySQL', icon: }, + { name: 'React', icon: } ]; const interests: Interest[] = [ @@ -128,20 +125,18 @@ export const About = () => { href="https://github.com/AtomicWasTaken" target="_blank" rel="noopener noreferrer" - className="w-full text-center px-6 sm:px-8 py-3 sm:py-4 border theme-border rounded-lg sm:rounded-full hover:theme-bg-05 transition-colors text-sm sm:text-base tracking-wide font-medium theme-text-90 flex items-center justify-center" + className="w-full text-center px-6 sm:px-8 py-3 sm:py-4 border theme-border rounded-lg sm:rounded-full hover:theme-bg-05 transition-colors text-sm sm:text-base tracking-wide font-medium theme-text-90" whileHover={{ scale: 1.02 }} > - View GitHub - Connect on LinkedIn diff --git a/src/pages/api/hello.ts b/src/pages/api/hello.ts deleted file mode 100644 index ea77e8f..0000000 --- a/src/pages/api/hello.ts +++ /dev/null @@ -1,13 +0,0 @@ -// Next.js API route support: https://nextjs.org/docs/api-routes/introduction -import type { NextApiRequest, NextApiResponse } from "next"; - -type Data = { - name: string; -}; - -export default function handler( - req: NextApiRequest, - res: NextApiResponse, -) { - res.status(200).json({ name: "John Doe" }); -} diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 153acfc..1b3921d 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -12,43 +12,43 @@ export default function Home() { useSmoothScroll(); return ( -
- - Jan-Marlon Leibl • Fullstack Software Developer | PHP & TypeScript Expert - - - - - - - - +
+ + Jan-Marlon Leibl • Fullstack Software Developer | PHP & TypeScript Expert + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - + + + + + + - - - + + +
+
); }