Skip to content

Commit

Permalink
Optimze all images
Browse files Browse the repository at this point in the history
  • Loading branch information
cihancinar committed Mar 8, 2021
1 parent 5d1dfb7 commit 40c78de
Show file tree
Hide file tree
Showing 70 changed files with 37 additions and 37 deletions.
2 changes: 1 addition & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<head>
<meta charset="utf-8" />
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico" />
<link rel="apple-touch-icon" sizes="76x76" href="%PUBLIC_URL%/apple-icon.png" />
<link rel="apple-touch-icon" sizes="76x76" href="%PUBLIC_URL%/apple-icon.webp" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<!--
Expand Down
Binary file removed src/assets/img/angular.png
Binary file not shown.
Binary file added src/assets/img/angular.webp
Binary file not shown.
Binary file removed src/assets/img/apigee.png
Binary file not shown.
Binary file added src/assets/img/apigee.webp
Binary file not shown.
Binary file removed src/assets/img/apple-icon.png
Binary file not shown.
Binary file added src/assets/img/apple-icon.webp
Binary file not shown.
Binary file removed src/assets/img/atoswl.png
Binary file not shown.
Binary file added src/assets/img/atoswl.webp
Binary file not shown.
Binary file removed src/assets/img/blurred-image-1.jpg
Binary file not shown.
Binary file added src/assets/img/blurred-image-1.webp
Binary file not shown.
Binary file removed src/assets/img/clouds.png
Binary file not shown.
Binary file added src/assets/img/clouds.webp
Binary file not shown.
Binary file removed src/assets/img/docker.png
Binary file not shown.
Binary file added src/assets/img/docker.webp
Binary file not shown.
Binary file removed src/assets/img/ember.png
Binary file not shown.
Binary file added src/assets/img/ember.webp
Binary file not shown.
Binary file removed src/assets/img/ewl.PNG
Binary file not shown.
Binary file added src/assets/img/ewl.webp
Binary file not shown.
Binary file removed src/assets/img/favicon.png
Binary file not shown.
Binary file added src/assets/img/favicon.webp
Binary file not shown.
Binary file removed src/assets/img/fog-low.png
Binary file not shown.
Binary file added src/assets/img/fog-low.webp
Binary file not shown.
Binary file removed src/assets/img/france.png
Binary file not shown.
Binary file added src/assets/img/france.webp
Binary file not shown.
Binary file removed src/assets/img/gitlab.jpg
Binary file not shown.
Binary file added src/assets/img/gitlab.webp
Binary file not shown.
Binary file removed src/assets/img/header.jpg
Binary file not shown.
Binary file added src/assets/img/header.webp
Binary file not shown.
Binary file removed src/assets/img/iut.jpg
Binary file not shown.
Binary file added src/assets/img/iut.webp
Binary file not shown.
Binary file removed src/assets/img/kafka.png
Binary file not shown.
Binary file added src/assets/img/kafka.webp
Binary file not shown.
Binary file removed src/assets/img/liris.jpg
Binary file not shown.
Binary file added src/assets/img/liris.webp
Binary file not shown.
Binary file removed src/assets/img/microservices.png
Binary file not shown.
Binary file added src/assets/img/microservices.webp
Binary file not shown.
Binary file removed src/assets/img/mongodb.png
Binary file not shown.
Binary file added src/assets/img/mongodb.webp
Binary file not shown.
Binary file removed src/assets/img/mysql.png
Binary file not shown.
Binary file added src/assets/img/mysql.webp
Binary file not shown.
Binary file removed src/assets/img/nodejs.png
Binary file not shown.
Binary file added src/assets/img/nodejs.webp
Binary file not shown.
Binary file removed src/assets/img/quarkus.png
Binary file not shown.
Binary file added src/assets/img/quarkus.webp
Binary file not shown.
Binary file removed src/assets/img/react.png
Binary file not shown.
Binary file added src/assets/img/react.webp
Binary file not shown.
Binary file removed src/assets/img/rest.png
Binary file not shown.
Binary file added src/assets/img/rest.webp
Binary file not shown.
Binary file removed src/assets/img/soap.jpeg
Binary file not shown.
Binary file added src/assets/img/soap.webp
Binary file not shown.
Binary file removed src/assets/img/spring.png
Diff not rendered.
Binary file added src/assets/img/spring.webp
Binary file not shown.
Binary file removed src/assets/img/top0.jpg
Diff not rendered.
Binary file added src/assets/img/top0.webp
Binary file not shown.
Binary file removed src/assets/img/top1.jpg
Diff not rendered.
Binary file added src/assets/img/top1.webp
Binary file not shown.
Binary file removed src/assets/img/turkey.png
Diff not rendered.
Binary file added src/assets/img/turkey.webp
Binary file not shown.
Binary file removed src/assets/img/ucbl.jpg
Diff not rendered.
Binary file added src/assets/img/ucbl.webp
Binary file not shown.
Binary file removed src/assets/img/uk.png
Diff not rendered.
Binary file added src/assets/img/uk.webp
Binary file not shown.
Binary file removed src/assets/img/vcard.png
Diff not rendered.
Binary file added src/assets/img/vcard.webp
Binary file not shown.
8 changes: 4 additions & 4 deletions src/components/Headers/IndexHeader.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import { Container } from "reactstrap";
// core components

function IndexHeader() {
const randBackgroundImage = "top" + Math.round(Math.random()) + ".jpg";
const randBackgroundImage = "top" + Math.round(Math.random()) + ".webp";
return (
<>
<div
Expand All @@ -43,10 +43,10 @@ function IndexHeader() {
<h1>Hello, world!</h1>
<h1 className="presentation-title">I'm Cihan Cinar</h1>
<div className="fog-low">
<img alt="..." src={require("assets/img/fog-low.png")} />
<img alt="..." src={require("assets/img/fog-low.webp")} />
</div>
<div className="fog-low right">
<img alt="..." src={require("assets/img/fog-low.png")} />
<img alt="..." src={require("assets/img/fog-low.webp")} />
</div>
</div>
<h2 className="presentation-subtitle text-center font-weight-bold">
Expand All @@ -57,7 +57,7 @@ function IndexHeader() {
<div
className="moving-clouds"
style={{
backgroundImage: "url(" + require("assets/img/clouds.png") + ")",
backgroundImage: "url(" + require("assets/img/clouds.webp") + ")",
}}
/>
</div>
Expand Down
8 changes: 4 additions & 4 deletions src/components/Headers/TermsHeader.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ function TermsHeader() {
return (
<>
<div
style={{
backgroundImage:
"url(" + require("assets/img/fabio-mangione.jpg") + ")",
}}
// style={{
// backgroundImage:
// "url(" + require("assets/img/fabio-mangione.jpg") + ")",
// }}
className="page-header page-header-xs"
data-parallax={true}
ref={pageHeader}
Expand Down
2 changes: 1 addition & 1 deletion src/views/SectionContact.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ function SectionContact() {
<img
alt="vcard"
height="143px"
src={require("assets/img/vcard.png")}
src={require("assets/img/vcard.webp")}
style={{ height:'143px', marginTop: '5px' }}
/>
</div>
Expand Down
18 changes: 9 additions & 9 deletions src/views/SectionExperience.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ function SectionExperience() {
<div className="timeline-wrap">

<div className="timeline-block">
<img className="timeline-image" alt="equensWorldline" src={require("assets/img/ewl.PNG")} />
<img className="timeline-image" alt="equensWorldline" src={require("assets/img/ewl.webp")} />
<div className="timeline-header">
<h4><strong>Senior Software Engineer</strong></h4>
<p>06/2020 - <u>Present</u></p>
Expand All @@ -65,7 +65,7 @@ function SectionExperience() {
</div>

<div className="timeline-block">
<img className="timeline-image" alt="equensWorldline" src={require("assets/img/ewl.PNG")} />
<img className="timeline-image" alt="equensWorldline" src={require("assets/img/ewl.webp")} />
<div className="timeline-header">
<h4><strong>Senior Software Engineer / Technical Lead</strong></h4>
<p>09/2019 - 06/2020</p>
Expand All @@ -87,7 +87,7 @@ function SectionExperience() {
</div>

<div className="timeline-block">
<img className="timeline-image" alt="equensWorldline" src={require("assets/img/atoswl.png")} />
<img className="timeline-image" alt="equensWorldline" src={require("assets/img/atoswl.webp")} />
<div className="timeline-header">
<h4><strong>Lead Developer</strong></h4>
<p>10/2018 - 09/2019</p>
Expand All @@ -107,7 +107,7 @@ function SectionExperience() {
</div>

<div className="timeline-block">
<img className="timeline-image" alt="equensWorldline" src={require("assets/img/atoswl.png")} />
<img className="timeline-image" alt="equensWorldline" src={require("assets/img/atoswl.webp")} />
<div className="timeline-header">
<h4><strong>Software Engineer</strong></h4>
<p>03/2016 - 10/2018</p>
Expand Down Expand Up @@ -138,7 +138,7 @@ function SectionExperience() {
</div>

<div className="timeline-block">
<img className="timeline-image" alt="equensWorldline" src={require("assets/img/ucbl.jpg")} />
<img className="timeline-image" alt="equensWorldline" src={require("assets/img/ucbl.webp")} />
<div className="timeline-header">
<h4><strong>Part-time teacher</strong></h4>
<p>10/2018 - 12/2018 & 10/2019 - 12/2019</p>
Expand All @@ -159,7 +159,7 @@ function SectionExperience() {
</div>

<div className="timeline-block">
<img className="timeline-image" alt="equensWorldline" src={require("assets/img/liris.jpg")} />
<img className="timeline-image" alt="equensWorldline" src={require("assets/img/liris.webp")} />
<div className="timeline-header">
<h4><strong>Internship</strong></h4>
<p>05/2015 - 08/2015</p>
Expand Down Expand Up @@ -196,7 +196,7 @@ function SectionExperience() {
<div className="timeline-wrap">

<div className="timeline-block">
<img className="timeline-image" alt="equensWorldline" src={require("assets/img/ucbl.jpg")} />
<img className="timeline-image" alt="equensWorldline" src={require("assets/img/ucbl.webp")} />
<div className="timeline-header">
<h4><strong>Master's Degree</strong></h4>
<p>2014 - 2016</p>
Expand All @@ -214,7 +214,7 @@ function SectionExperience() {
</div>

<div className="timeline-block">
<img className="timeline-image" alt="equensWorldline" src={require("assets/img/ucbl.jpg")} />
<img className="timeline-image" alt="equensWorldline" src={require("assets/img/ucbl.webp")} />
<div className="timeline-header">
<h4><strong>Bachelor's Degree</strong></h4>
<p>2013 - 2014</p>
Expand All @@ -232,7 +232,7 @@ function SectionExperience() {
</div>

<div className="timeline-block">
<img className="timeline-image" alt="equensWorldline" src={require("assets/img/iut.jpg")} />
<img className="timeline-image" alt="equensWorldline" src={require("assets/img/iut.webp")} />
<div className="timeline-header">
<h4><strong>Bachelor's Degree</strong></h4>
<p>2011 – 2013</p>
Expand Down
36 changes: 18 additions & 18 deletions src/views/SectionSkill.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ function SectionSkill() {
<img
alt="Spring"
className="img-rounded img-responsive"
src={require("assets/img/spring.png")}
src={require("assets/img/spring.webp")}
style={{ marginTop: '5px' }}
/>
</Col>
Expand All @@ -80,7 +80,7 @@ function SectionSkill() {
<img
alt="Spring"
className="img-rounded img-responsive"
src={require("assets/img/nodejs.png")}
src={require("assets/img/nodejs.webp")}
style={{ marginTop: '5px' }}
/>
</Col>
Expand All @@ -103,7 +103,7 @@ function SectionSkill() {
<img
alt="Spring"
className="img-rounded img-responsive"
src={require("assets/img/quarkus.png")}
src={require("assets/img/quarkus.webp")}
style={{ marginTop: '5px' }}
/>
</Col>
Expand Down Expand Up @@ -133,7 +133,7 @@ function SectionSkill() {
<img
alt="Spring"
className="img-rounded img-responsive"
src={require("assets/img/angular.png")}
src={require("assets/img/angular.webp")}
style={{ width: '29px', marginTop: '5px' }}
/>
</Col>
Expand All @@ -156,7 +156,7 @@ function SectionSkill() {
<img
alt="Spring"
className="img-rounded img-responsive"
src={require("assets/img/react.png")}
src={require("assets/img/react.webp")}
style={{ width: '51px', marginTop: '5px' }}
/>
</Col>
Expand All @@ -179,7 +179,7 @@ function SectionSkill() {
<img
alt="Spring"
className="img-rounded img-responsive"
src={require("assets/img/ember.png")}
src={require("assets/img/ember.webp")}
style={{ marginTop: '5px' }}
/>
</Col>
Expand Down Expand Up @@ -220,7 +220,7 @@ function SectionSkill() {
<img
alt="Spring"
className="img-rounded img-responsive"
src={require("assets/img/rest.png")}
src={require("assets/img/rest.webp")}
style={{ marginTop: '5px' }}
/>
</Col>
Expand All @@ -243,7 +243,7 @@ function SectionSkill() {
<img
alt="Spring"
className="img-rounded img-responsive"
src={require("assets/img/soap.jpeg")}
src={require("assets/img/soap.webp")}
style={{ marginTop: '5px', maxHeight: '25px' }}
/>
</Col>
Expand All @@ -266,7 +266,7 @@ function SectionSkill() {
<img
alt="Spring"
className="img-rounded img-responsive"
src={require("assets/img/microservices.png")}
src={require("assets/img/microservices.webp")}
style={{ marginTop: '5px', maxHeight: '30px' }}
/>
</Col>
Expand All @@ -289,7 +289,7 @@ function SectionSkill() {
<img
alt="Spring"
className="img-rounded img-responsive"
src={require("assets/img/apigee.png")}
src={require("assets/img/apigee.webp")}
style={{ marginTop: '5px' }}
/>
</Col>
Expand Down Expand Up @@ -320,7 +320,7 @@ function SectionSkill() {
<img
alt="Spring"
className="img-rounded img-responsive"
src={require("assets/img/docker.png")}
src={require("assets/img/docker.webp")}
style={{ marginTop: '5px' }}
/>
</Col>
Expand Down Expand Up @@ -366,7 +366,7 @@ function SectionSkill() {
<img
alt="Spring"
className="img-rounded img-responsive"
src={require("assets/img/gitlab.jpg")}
src={require("assets/img/gitlab.webp")}
style={{ marginTop: '5px' }}
/>
</Col>
Expand Down Expand Up @@ -430,7 +430,7 @@ function SectionSkill() {
<img
alt="Spring"
className="img-rounded img-responsive"
src={require("assets/img/mysql.png")}
src={require("assets/img/mysql.webp")}
style={{ marginTop: '5px', maxHeight: '25px' }}
/>
</Col>
Expand All @@ -453,7 +453,7 @@ function SectionSkill() {
<img
alt="Spring"
className="img-rounded img-responsive"
src={require("assets/img/mongodb.png")}
src={require("assets/img/mongodb.webp")}
style={{ marginTop: '5px' }}
/>
</Col>
Expand Down Expand Up @@ -507,7 +507,7 @@ function SectionSkill() {
<img
alt="Spring"
className="img-rounded img-responsive"
src={require("assets/img/kafka.png")}
src={require("assets/img/kafka.webp")}
style={{ marginTop: '5px' }}
/>
</Col>
Expand Down Expand Up @@ -546,7 +546,7 @@ function SectionSkill() {
<img
alt="Spring"
className="img-rounded img-responsive"
src={require("assets/img/france.png")}
src={require("assets/img/france.webp")}
style={{ marginTop: '5px' }}
/>
</Col>
Expand All @@ -568,7 +568,7 @@ function SectionSkill() {
<img
alt="Spring"
className="img-rounded img-responsive"
src={require("assets/img/turkey.png")}
src={require("assets/img/turkey.webp")}
style={{ marginTop: '5px' }}
/>
</Col>
Expand All @@ -590,7 +590,7 @@ function SectionSkill() {
<img
alt="Spring"
className="img-rounded img-responsive"
src={require("assets/img/uk.png")}
src={require("assets/img/uk.webp")}
style={{ marginTop: '5px' }}
/>
</Col>
Expand Down

0 comments on commit 40c78de

Please sign in to comment.