-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
30 additions
and
27 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 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 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 |
---|---|---|
@@ -1,15 +1,19 @@ | ||
import Hero from "@/components/Hero/Hero"; | ||
import About from "@/components/About/About"; | ||
import Skills from "@/components/Skills/Skills"; | ||
import Projects from "@/components/Projects/Projects"; | ||
import ProjectsData from "@/data/projects.json"; | ||
import styles from "./page.module.scss"; | ||
import Contact from "@/components/Contact/Contact"; | ||
|
||
// need to add refs to the components | ||
|
||
export default function Home() { | ||
return ( | ||
<> | ||
<Hero /> | ||
<div className={styles.Home}> | ||
<About /> | ||
<Skills /> | ||
<Projects projects={ProjectsData} /> | ||
</> | ||
<Contact /> | ||
</div> | ||
); | ||
} |
File renamed without changes.
6 changes: 3 additions & 3 deletions
6
src/components/Hero/Hero.tsx → src/components/About/About.tsx
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
File renamed without changes.
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,11 @@ | ||
import styles from "./Contact.module.scss"; | ||
|
||
// have social media icons & links + made with love by me | ||
|
||
export default function Contact() { | ||
return ( | ||
<section className={styles.Contact}> | ||
<p>Contact</p> | ||
</section> | ||
); | ||
} |
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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[ | ||
{ | ||
"name": "Home", | ||
"slug": "/" | ||
"name": "About", | ||
"slug": "about-ref" | ||
}, | ||
{ | ||
"name": "About", | ||
"slug": "/about" | ||
"name": "Skills", | ||
"slug": "skills-ref" | ||
}, | ||
{ | ||
"name": "Contact", | ||
"slug": "/contact" | ||
"name": "Projects", | ||
"slug": "projects-ref" | ||
} | ||
] |