From 1550e8ec8d0c3202c5da561263a0285d8e7b8e24 Mon Sep 17 00:00:00 2001 From: Nick Date: Thu, 23 May 2024 04:05:32 +0000 Subject: [PATCH] feat: removing about section and converting home page from mdx to tsx --- src/index.tsx | 2 +- src/pages/home/home.mdx | 29 ----------------------------- src/pages/home/home.tsx | 15 +++++++++++++++ 3 files changed, 16 insertions(+), 30 deletions(-) delete mode 100644 src/pages/home/home.mdx create mode 100644 src/pages/home/home.tsx diff --git a/src/index.tsx b/src/index.tsx index 58394d9..30a0c83 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -17,7 +17,7 @@ import Banner from './components/index/banner/banner'; import Navigation from './components/index/navigation/navigation'; // Pages -import Home from './pages/home/home.mdx'; +import Home from './pages/home/home.tsx'; import Projects from './pages/projects/projects.mdx'; import Error404 from './pages/error/404.mdx'; diff --git a/src/pages/home/home.mdx b/src/pages/home/home.mdx deleted file mode 100644 index 9bc5f80..0000000 --- a/src/pages/home/home.mdx +++ /dev/null @@ -1,29 +0,0 @@ -import { NavLink } from 'react-router-dom'; - -import Hero from '/src/components/home/hero/hero'; -import SocialLinks from '/src/components/home/social-links/social-links'; -import FeaturedProjects from '/src/components/home/featured/featured-projects'; - -import './home.scss'; - - - - - -# About - -After working in the games industry for over 4 years, I decided it was time to switch tracks and pursue a different kind of software development. At the end of my stint at Naughty Dog I found myself building web tools with React to streamline our development process, and I really enjoyed that. One canceled multiplayer project, layoffs, and 11 freeCodeCamp certificates later I stand before you as a skilled full-stack developer. Below I have a set of featured projects that showcase my skillset ranging from front-end to back-end, and even some of my work in games. - - - -# Other Information - -## Interests - -Outside of my professional life I have many interests that keep me coding even off the clock, here are some of my passions below: - -{/* - Open Source Software Projects */} - -- Self Hosting - Some of my favorite programs I host: [Immich](https://immich.app/), [Home Assistant](https://www.home-assistant.io/), [Mealie](https://mealie.io/). -- Media & Data Preservation - 30TB capacity and counting in my NAS. -- Linux - I'm a Debian kind of guy, I use it whenever possible across my home-lab, development containers, and more. diff --git a/src/pages/home/home.tsx b/src/pages/home/home.tsx new file mode 100644 index 0000000..16ee075 --- /dev/null +++ b/src/pages/home/home.tsx @@ -0,0 +1,15 @@ +import Hero from 'src/components/home/hero/hero'; +import SocialLinks from 'src/components/home/social-links/social-links'; +import FeaturedProjects from 'src/components/home/featured/featured-projects'; + +import './home.scss'; + +export default function Home() { + return ( + <> + + + + + ); +}