diff --git a/src/favicon.ico b/public/favicon.ico
similarity index 100%
rename from src/favicon.ico
rename to public/favicon.ico
diff --git a/public/manifest.json b/public/manifest.json
index 1f2f141..44b32bd 100644
--- a/public/manifest.json
+++ b/public/manifest.json
@@ -1,6 +1,6 @@
{
- "short_name": "React App",
- "name": "Create React App Sample",
+ "short_name": "Giovani Rodriguez",
+ "name": "",
"icons": [
{
"src": "favicon.ico",
diff --git a/src/components/App.css b/src/components/App.css
index 5686e53..fdb9d21 100644
--- a/src/components/App.css
+++ b/src/components/App.css
@@ -3,11 +3,23 @@ html {
scroll-behavior: smooth;
}
+.content-width {
+ width: 75%;
+}
+
.section-height {
height: 5rem;
}
-@media (max-width: 575.98px) {
+@media (max-width: 575.98px) { /* sm */
+ .content-width {
+ width: 90%;
+ }
+
+ .content-text-size {
+ font-size: 1.6rem;
+ }
+
.section-height {
height: 3rem;
}
diff --git a/src/components/bio/bio.css b/src/components/bio/bio.css
index 974b52f..e69de29 100644
--- a/src/components/bio/bio.css
+++ b/src/components/bio/bio.css
@@ -1,14 +0,0 @@
-
-.content-width {
- width: 75%;
-}
-
-@media (max-width: 575.98px) { /* sm */
- .content-width {
- width: 85%;
- }
-
- .content-type-size {
- font-size: 1.6rem;
- }
-}
\ No newline at end of file
diff --git a/src/components/bio/bio.js b/src/components/bio/bio.js
index f27a8f4..f492d55 100644
--- a/src/components/bio/bio.js
+++ b/src/components/bio/bio.js
@@ -9,7 +9,7 @@ class Bio extends Component {
-
+
My name is Giovani Rodriguez and I create tools, applications and websites as solutions for individuals or businesses that need them.
I am a problem solver, solution maker upper and answer deilverer. I always itch to learn something new and strive to deliver my best. When I'm not
creating I am either reading, writing or playing games.
diff --git a/src/components/contact/contact.css b/src/components/contact/contact.css
new file mode 100644
index 0000000..e69de29
diff --git a/src/components/contact/contact.js b/src/components/contact/contact.js
new file mode 100644
index 0000000..5e006ed
--- /dev/null
+++ b/src/components/contact/contact.js
@@ -0,0 +1,27 @@
+import React, {Component} from 'react';
+import './contact.css';
+
+class Contact extends Component {
+ render() {
+ return (
+
+ );
+ }
+}
+
+export default Contact;
\ No newline at end of file
diff --git a/src/components/footer/footer.js b/src/components/footer/footer.js
index 3084394..11e8f3d 100644
--- a/src/components/footer/footer.js
+++ b/src/components/footer/footer.js
@@ -7,21 +7,22 @@ import TwitterIcon from '../../images/twitter-logo.svg';
class Footer extends Component {
render() {
return (
-
-
+
+
+
diff --git a/src/components/home/home.css b/src/components/home/home.css
new file mode 100644
index 0000000..e69de29
diff --git a/src/components/home/home.js b/src/components/home/home.js
index ec2da6d..f4f6977 100644
--- a/src/components/home/home.js
+++ b/src/components/home/home.js
@@ -4,7 +4,9 @@ import Footer from "../footer/footer";
import Introduction from '../introduction/introduction';
import Bio from '../bio/bio';
import History from '../history/history';
-import Skills from '../skills/skills'
+import Skills from '../skills/skills';
+import Contact from '../contact/contact';
+import './home.css';
class Home extends Component {
render() {
@@ -15,6 +17,7 @@ class Home extends Component {
+
);
diff --git a/src/components/introduction/introduction.js b/src/components/introduction/introduction.js
index 8afdbf9..ddfdadc 100644
--- a/src/components/introduction/introduction.js
+++ b/src/components/introduction/introduction.js
@@ -1,5 +1,5 @@
import React, {Component} from 'react';
-import ProfilePicture from '../../images/home/profilePicture.jpg';
+import ProfilePicture from '../../images/home/profilePictureTwo.jpg';
import "./introduction.css";
const lineOneText = 'Hi, my name is Giovani.';
diff --git a/src/components/skills/skills.js b/src/components/skills/skills.js
index 8810107..0e4e61a 100644
--- a/src/components/skills/skills.js
+++ b/src/components/skills/skills.js
@@ -71,15 +71,17 @@ class Skills extends Component {
render() {
return (
-
+
+
Skills and Abilities
{this.progressBars.map((progressBar, i) => {
return (
-
{progressBar.heading}
-
+
{progressBar.heading}
+
{progressBar.percentageWidth+'%'}
+
progressBar.ref = el}
role="progressbar"
diff --git a/src/images/home/profilePictureTwo.jpg b/src/images/home/profilePictureTwo.jpg
new file mode 100644
index 0000000..5de83cf
Binary files /dev/null and b/src/images/home/profilePictureTwo.jpg differ