Browse Source

fix: typography

rebranding
Garrit Franke 3 years ago
parent
commit
f080cf5e4d
Signed by: garrit
GPG Key ID: 65586C4DDA55EA2C
  1. 22
      content/cv.md
  2. 2
      next.config.js
  3. 14
      styles/components/header.scss
  4. 1
      styles/foundation/typography.scss

22
content/cv.md

@ -2,25 +2,25 @@
title: "Curriculum Vitae"
---
# Education
## Education
Advanced technical certificate (Degree); 2015 - 2017
Mobile Software Developer (Traineeship); 2017 - 2020
# Experience
## Experience
## appmotion GmbH
### appmotion GmbH
### Software Developer, March 2021 - present
_**Software Developer, March 2021 - present**_
Development of a web-based convention application
* Development of APIs using Node.js and GraphQL
## CGI Germany
### CGI Germany
### Mobile Software Developer, 2020 - Feburary 2021
_**Mobile Software Developer, 2020 - Feburary 2021**_
Development of a companion app for a leading automotive company
@ -35,18 +35,18 @@ Development of a mobile smart-home application
* Managing IoT devices using AWS IoT Core
* Maintaining a RESTful API using AWS Lambda
### Trainee, 2017 - 2020
_**Trainee, 2017 - 2020**_
Various Projects related to mobile app development in fields including fleet
management and game development
## Volkswagen Financial Services
### Volkswagen Financial Services
### SAP Development Intern, 2015 - 2016
_**SAP Development Intern, 2015 - 2016**_
Development of an application to look up car dealership data
# Projects
## Projects
### [Clio Programming Language - Core Contributer](https://clio-lang.org/)
@ -68,7 +68,7 @@ A bullshit-free programming language that compiles to JavaScript and C.
Concurrent Gemini server written in Rust. Very lightweight and hackable.
# Activities
## Activities
### "WirVsVirus" hackathon participant, 2020

2
next.config.js

@ -1,3 +1,5 @@
const path = require("path");
const isProd = process.env.NODE_ENV === 'production'
module.exports = {

14
styles/components/header.scss

@ -1,5 +1,4 @@
nav {
padding: 1.5rem 1.25rem;
display: flex;
justify-content: space-between;
flex-direction: row;
@ -7,6 +6,14 @@ nav {
a h1 {
margin: 0;
color: $color-text-dark;
text-align: center;
padding: 24px;
font-weight: 400;
font-size: 40px;
@media (prefers-color-scheme: light) {
color: $color-primary-light;
}
}
}
@ -16,9 +23,11 @@ nav {
flex-direction: row;
margin: 0;
padding: 0;
text-align: center;
align-items: center;
}
.header__links li {
padding: 1rem 1.5rem;
padding: 24px;
}
@media (min-width: 768px) {
.header {
@ -27,7 +36,6 @@ nav {
}
.nav {
height: 100%;
border-bottom: none;
align-items: flex-start;
}
}

1
styles/foundation/typography.scss

@ -28,6 +28,7 @@
h1 {
@include header;
font-size: 47px;
font-weight: bold;
}
h2 {

Loading…
Cancel
Save