diff --git a/src/components/About.js b/src/components/About.js index 070e76b04..c64d6b065 100644 --- a/src/components/About.js +++ b/src/components/About.js @@ -2,7 +2,14 @@ import React from "react"; import { image } from "../data/data"; function About() { - return
About
; + return
+ About + I made this +

+

About Me

+ + +
; } export default About; diff --git a/src/components/Home.js b/src/components/Home.js index bf7081333..93a0266fd 100644 --- a/src/components/Home.js +++ b/src/components/Home.js @@ -3,7 +3,9 @@ import { name, city } from "../data/data.js"; function Home() { // update the JSX being returned! - return
Home
; + return
Home +

{name} is a Web Developer from {city}

+
; } export default Home; diff --git a/src/components/NavBar.js b/src/components/NavBar.js index 86a760056..508988ace 100644 --- a/src/components/NavBar.js +++ b/src/components/NavBar.js @@ -2,7 +2,12 @@ import React from "react"; function NavBar() { // update the JSX being returned! - return ; + return <> + + ; } export default NavBar;