-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: removing about section and converting home page from mdx to tsx
- Loading branch information
1 parent
cb318bb
commit 1550e8e
Showing
3 changed files
with
16 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 /> | ||
</> | ||
); | ||
} |