Skip to content

Commit

Permalink
Banner background, defaultValue prop removal and style changes. resum…
Browse files Browse the repository at this point in the history
…eData address removal
  • Loading branch information
Mario Arriaga committed Sep 13, 2020
1 parent dce99a4 commit 84c3e09
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions public/css/layout.css
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ header {
height: 800px;
min-height: 500px;
width: 100%;
background: #161415 url(../images/header-background.jpg) no-repeat top center;
background: #161415 url(../images/coding-background.jpg) no-repeat top center;
background-size: cover !important;
-webkit-background-size: cover !important;
text-align: center;
Expand Down Expand Up @@ -66,7 +66,7 @@ header .banner-text h1 {
}
header .banner-text h3 {
font: 18px/1.9em 'librebaskerville-regular', serif;
color: #A8A8A8;
color: #777777;
margin: 0 auto;
width: 70%;
text-shadow: 0px 1px 2px rgba(0, 0, 0, .5);
Expand Down
Binary file added public/images/coding-background.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions public/resumeData.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
"email": "[email protected]",
"phone": "+52 686 278 8437",
"address": {
"street": "Calle 12 Ote. #809",
"city": "San Andres Cholula",
"street": "",
"city": "San Andres Cholula (Puebla, Mexico)",
"state": "Puebla",
"zip": "72810"
},
"website": "http://www.timbakerdev.com",
"resumedownload": "http://timbakerdev.com",
"resumedownload": "https://happy-goldstine-e1926e.netlify.app/",
"social": [
{
"name": "facebook",
Expand Down Expand Up @@ -115,7 +115,7 @@
"portfolio": {
"projects": [
{
"title": "FRN Stack Amazon Clone",
"title": "FRN Stack Amazon Clone (pending to modify image and url)",
"category": "Amazon Clone built with FRN (MongoDB, ExpressJS, ReactJS, NodeJS)",
"image": "whatsapp-mern.jpeg",
"url": "https://www.youtube.com/watch?v=gzdQDxzW2Tw"
Expand Down
7 changes: 4 additions & 3 deletions src/Components/Contact.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,18 @@ const Contact = ({ data }) => {

<div>
<label htmlFor="contactName">Name <span className="required">*</span></label>
<input value={name} type="text" defaultValue="" size="35" id="contactName" name="contactName" onChange={e => setName(e.target.value)}/>
{/* <input value={name} type="text" defaultValue="" size="35" id="contactName" name="contactName" onChange={e => setName(e.target.value)}/> */}
<input value={name} type="text" size="35" id="contactName" name="contactName" onChange={e => setName(e.target.value)}/>
</div>

<div>
<label htmlFor="contactEmail">Email <span className="required">*</span></label>
<input value={email} type="text" defaultValue="" size="35" id="contactEmail" name="contactEmail" onChange={e=> setEmail(e.target.value)}/>
<input value={email} type="text" size="35" id="contactEmail" name="contactEmail" onChange={e=> setEmail(e.target.value)}/>
</div>

<div>
<label htmlFor="contactSubject">Subject</label>
<input value={subject} type="text" defaultValue="" size="35" id="contactSubject" name="contactSubject" onChange={e => setSubject(e.target.value)}/>
<input value={subject} type="text" size="35" id="contactSubject" name="contactSubject" onChange={e => setSubject(e.target.value)}/>
</div>

<div>
Expand Down

0 comments on commit 84c3e09

Please sign in to comment.