Skip to content

Commit

Permalink
feat: removing about section and converting home page from mdx to tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
TheNickOfTime committed May 23, 2024
1 parent cb318bb commit 1550e8e
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 30 deletions.
2 changes: 1 addition & 1 deletion src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Expand Down
29 changes: 0 additions & 29 deletions src/pages/home/home.mdx

This file was deleted.

15 changes: 15 additions & 0 deletions src/pages/home/home.tsx
Original file line number Diff line number Diff line change
@@ -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 (
<>
<Hero />
<SocialLinks />
<FeaturedProjects />
</>
);
}

0 comments on commit 1550e8e

Please sign in to comment.