-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from aaronczichon/feature/about-page
Feature: About page
- Loading branch information
Showing
8 changed files
with
100 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
import Layout from "./Layout.astro"; | ||
import Hero from "../components/Hero.astro"; | ||
import HeroImage from "../resources/hero.jpeg"; | ||
const { frontmatter } = Astro.props; | ||
--- | ||
|
||
<Layout title={"Aaron Czichon - " + frontmatter.title}> | ||
<Hero | ||
image={HeroImage} | ||
alt="Showing Aaron in the forebround on the right side in a dark green hoodie with a sunny landscape in the background" | ||
/> | ||
<main class="container"> | ||
<article> | ||
<slot /> | ||
</article> | ||
</main> | ||
</Layout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
layout: "../layouts/AboutPage.astro" | ||
title: "About Me" | ||
--- | ||
|
||
# Hi, I'm Aaron! | ||
|
||
Currently I'm working remotely from Canada and calling Newfoundland my home away from home. | ||
As a seasoned Senior Javascript Engineer from Germany, I've been weaving my web tech magic since 2020 over at PlanB. GmbH. | ||
Previously I worked at a small startup as Head of Software Development where developed a digital asset and twin platform for the industry based on NodeJS, Angular and VueJS. | ||
|
||
Over the past few years of software development I wrote several apps, articles and talked at conferences. Since August 2022 I’m listed as an official [Ionic Developer Expert (IDE)](https://ionic.io/developer-experts). | ||
As a freelance trainer I provide workshops for NodeJS, Ionic, Angular and Javascript in general. | ||
|
||
On my more than 11 years experience in the software development industry I worked with small and large teams in various roles. | ||
|
||
In my free time I love to play volleyball or go out for running and sometimes athletics. I'm a huge fan of Formula 1 (yes Mercedes is still my favourite team) and on good, sunny days I like to drive my motorcycle. | ||
Over the past years I also had different roles for volunteering in my hometown community and the local sports club from being responsible for the financial parts of the Volleyball branch, being a chairman of the whole club from 2020 until 2024 and now in the responsible for IT and official communications. I always got my hands in something worthwhile. | ||
|
||
If you want to get more details, feel free to visit my [Github profile](https://github.com/aaronczichon) or contact me on [Mastodon](https://mastodon.social/@czichon) and let's chat about code, development or share a Formula 1 story! | ||
|
||
--- | ||
|
||
## Things to explore on this website | ||
|
||
**Country Map** | ||
I love getting in touch with people all over the world. If you're interested, take a look at the [map with my visited countries in the world](/visited-countries/). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters