Skip to content

Commit

Permalink
Fix Images
Browse files Browse the repository at this point in the history
Relates #106
  • Loading branch information
Dalmano committed Jun 19, 2019
1 parent c7ef82e commit 464a11b
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 19 deletions.
6 changes: 3 additions & 3 deletions src/components/Footer/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ const Footer = () => {
<div className="footer">
<img
className="footer-img"
src="../../assets/instagram.png"
src="https://user-images.githubusercontent.com/30301023/59760481-5c1c2000-928a-11e9-9283-510e4d638911.png"
alt="instagram logo"
/>
<img
className="footer-img"
src="../../assets/twitter.png"
src="https://user-images.githubusercontent.com/30301023/59760518-6ccc9600-928a-11e9-8537-04934fc4b82b.png"
alt="twitter logo"
/>
<img
className="footer-img"
src="../../assets/facebook.png"
src="https://user-images.githubusercontent.com/30301023/59760456-4ad31380-928a-11e9-9ca0-f6c5d06c19d3.png"
alt="facebook logo"
/>
</div>
Expand Down
8 changes: 4 additions & 4 deletions src/components/Homepage/Founders/Founder/Founder.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const Founder = props => {
<div className="FounderComponent">
<img
className="FounderComponent--portraitphoto"
src="./../../assets/portrait-photo.png"
src="https://user-images.githubusercontent.com/30301023/59760509-66d6b500-928a-11e9-8227-05c4cd4288db.png"
alt=""
/>
<h3 className="FounderComponent--name">{props.name}</h3>
Expand All @@ -15,21 +15,21 @@ const Founder = props => {
<a href={props.instagram}>
<img
className="FounderComponent--socialicons__icons"
src="../../assets/instagram.png"
src="https://user-images.githubusercontent.com/30301023/59760481-5c1c2000-928a-11e9-9283-510e4d638911.png"
alt="instagram logo"
/>
</a>
<a href={props.twitter}>
<img
className="FounderComponent--socialicons__icons"
src="../../assets/twitter.png"
src="https://user-images.githubusercontent.com/30301023/59760518-6ccc9600-928a-11e9-8537-04934fc4b82b.png"
alt="twitter logo"
/>
</a>
<a href={props.facebook}>
<img
className="FounderComponent--socialicons__icons"
src="../../assets/facebook.png"
src="https://user-images.githubusercontent.com/30301023/59760456-4ad31380-928a-11e9-9ca0-f6c5d06c19d3.png"
alt="facebook logo"
/>
</a>
Expand Down
28 changes: 17 additions & 11 deletions src/components/Homepage/Ourplatform/Ourplatform.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,23 @@ const Ourplatform = () => {
<div className="OurplatformComponent">
<h2 className="OurplatformComponent--header">Our Platform</h2>
<div className="OurplatformComponent--container">
<div className="OurplatformComponent--leftdiv__container">
<p className="OurplatformComponent--paragraph">
Our platform eliminates the ambiguity of the traditional graduate recruitment process, where top talent can be missed as a result of restrictive testing and interviews.
<br/>
<br/>
With us, businesses can develop meaningful connections with students as they gain experience and develop their competencies.
</p>
</div>
<div className="OurplatformComponent--rightdiv__container">
<img src="./../../assets/devices-icon.png" alt=""/>
</div>
<div className="OurplatformComponent--leftdiv__container">
<p className="OurplatformComponent--paragraph">
Our platform eliminates the ambiguity of the traditional graduate
recruitment process, where top talent can be missed as a result of
restrictive testing and interviews.
<br />
<br />
With us, businesses can develop meaningful connections with students
as they gain experience and develop their competencies.
</p>
</div>
<div className="OurplatformComponent--rightdiv__container">
<img
src="https://user-images.githubusercontent.com/30301023/59760440-3db62480-928a-11e9-91c5-8d83f17ed450.png"
alt=""
/>
</div>
</div>
</div>
);
Expand Down
Binary file removed src/components/Homepage/Ourplatform/devices-icon.png
Binary file not shown.
2 changes: 1 addition & 1 deletion src/components/Navbar/NavBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const NavBar = () => {
<li>
<img
className="NavBar--li__logo"
src="../../assets/groundworks-logo.png"
src="https://user-images.githubusercontent.com/30301023/59760468-54f51200-928a-11e9-8009-2ae607c498b5.png"
alt="GroundWorks Logo"
/>
</li>
Expand Down

0 comments on commit 464a11b

Please sign in to comment.