--- import { animation, animationDelay } from '../data/site'; import GridLayout from '../layouts/GridLayout.astro'; import PageTitle from '../components/PageTitle.astro'; import DownloadLink from '../components/DownloadLink.astro'; import EmailLink from '../components/EmailLink.astro'; import { Divider, Headline, ListItem, Subheadline, Text, TextLink, UnorderedList, } from '../components'; import cv from '../data/cv.json'; import { Content as Intro } from '../text/cv/intro.mdx'; import { Content as InterestsHobbies } from '../text/cv/interests-hobbies.mdx'; import { mapping } from '../mdx-components'; const title = 'CV'; const description = 'The curriculum vitae of Stefan Imhoff, Senior Software Engineer from Hamburg, Germany.'; --- Curriculum Vitae
{cv.summary.headline}
Personal Information {cv.personal.name} {cv.personal.tagline} Website
{cv.experience.headline} { cv.experience.items.map((item) => (
{item.title}
{item.duration}
{item.company} / {item.location}
{item.url && (
{item.url.replace(/https?:\/\//, '')}
)}
{item.tasks.length > 0 && ( {item.tasks.map((task) => ( {task} ))} )}
)) } {cv.education.headline} { cv.education.items.map((item) => (
{item.degree}
{item.duration}
{item.school} / {item.location}
{item.url && (
{item.url.replace(/https?:\/\//, '')}
)}
)) }
{cv.interests.headline}