Skip to content

Commit

Permalink
Text updates and cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
flygare committed May 17, 2022
1 parent f24fce7 commit 3e408e1
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 160 deletions.
2 changes: 1 addition & 1 deletion src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default function App() {
<AboutSection />
</div>
<div id="work">
<div className="subtitle">Work</div>
<div className="subtitle">Projects</div>
<WorkSection />
</div>
<div id="contact">
Expand Down
12 changes: 4 additions & 8 deletions src/index.jsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
import React from "react";
import ReactDOM from "react-dom";
import { createRoot } from "react-dom/client";
import "./index.scss";
import App from "./App";
import * as serviceWorker from "./serviceWorker";

ReactDOM.render(<App />, document.getElementById("root"));

// If you want your app to work offline and load faster, you can change
// unregister() to register() below. Note this comes with some pitfalls.
// Learn more about service workers: https://bit.ly/CRA-PWA
serviceWorker.unregister();
const container = document.getElementById("root");
const root = createRoot(container);
root.render(<App />);
26 changes: 16 additions & 10 deletions src/sections/AboutSection.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,26 @@ export default function AboutSection() {
<div className="this-is">Software Engineer</div>
<div className="name">Robin Flygare</div>
<p>
Graduated at BTH with a bachelors degree in Software Engineering in
2017. Interested in just about everything that has to do with software
and always on the lookout for new things to learn.
Graduated Blekinge Institute of Technology 2017 with a Bachelor of
Science degree in Software Engineering. Interested in just about
everything that has to do with software and always on the lookout for
new things to learn.
</p>
<p>
Currently working to make the school hip with technologies such as
GraphQL, Vue and Java at <a href="https://www.ist.com">IST</a>. Before
IST I spent the summer working at{" "}
<a href="https://www.qvantel.com">Qvantel</a>, creating a PoC using
primarily Scala, Grafana and the Elastic stack.
Currently working as a software consultant at{" "}
<a href="https://www.swecogroup.com/">Sweco</a>, using my knowledge to
help customers with technologies including Golang, JavaScript,
OpenStreetMap and Postgresql.
</p>
<p>
Previously worked on multiple school projects with customers like
Qvantel (which you can read more about in the Orcd work section),{" "}
Previously worked with GraphQL, Vue and Java at{" "}
<a href="https://www.ist.com">IST</a>. Before That I spent the summer
working at <a href="https://www.qvantel.com">Qvantel</a>, creating a PoC
using primarily Scala, Grafana and Elastic stack.
</p>
<p>
Before, I have worked on multiple school projects with customers like
Qvantel developing the orcD system,{" "}
<a href="https://www.softhouse.se">Softhouse</a> creating an
cable-viewing iOS app and creating an indoor navigation app at
<a href="https://www.bth.se"> BTH</a> for Google Glass.
Expand Down
2 changes: 1 addition & 1 deletion src/sections/ContactSection.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default function ContactSection() {
ways of contacting me
</p>
<div className="links">
<a href="mailto:robin@flygare.me">robin@flygare.me</a>
<a href="mailto:robin[email protected]">robin[email protected]</a>
<a href="https://github.com/flygare/">
<FontAwesomeIcon icon={faGithub} />
</a>
Expand Down
5 changes: 4 additions & 1 deletion src/sections/ContactSection.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
margin-right: 30px;
}
.links {
font-size: 28px;
font-size: 24px;
line-height: 50px;
@media screen and (min-width: 460px){
font-size: 28px;
}
}
6 changes: 3 additions & 3 deletions src/sections/WorkSection.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,18 +50,18 @@ export default function WorkSection() {
</div>
</div>
</div>
<div className="row">
{/* <div className="row">
<div className="col-xs-5">
<div className="work-info-box">
<div className="project-name">foodi</div>
<div className="project-name">project</div>
</div>
</div>
<div className="col-xs-7">
<div className="work-image-box">
<div className="work-info-box">coming soon</div>
</div>
</div>
</div>
</div> */}
</div>
);
}
136 changes: 0 additions & 136 deletions src/serviceWorker.js

This file was deleted.

0 comments on commit 3e408e1

Please sign in to comment.