This commit is contained in:
webfussel 2024-05-20 20:21:14 +02:00
commit c04f9e66ca
21 changed files with 12436 additions and 0 deletions

View file

@ -0,0 +1,68 @@
.Intro {
background-image: radial-gradient(circle at -50vw -50vh, rgba(255,145,0,0.2) 0%, rgba(0,0,0,0) 63%, rgba(0,0,0,0) 100%);
background-repeat: no-repeat;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
.intro-img {
width: 750px;
position: absolute;
bottom: 0;
right: 0;
img {
transition: 250ms;
position: relative;
width: 100%;
}
}
.intro-text {
height: 100%;
display: flex;
justify-content: center;
flex-direction: column;
z-index: 1;
span.highlight {
color: var(--color-orange);
}
h2 {
display: flex;
flex-direction: column;
font-size: 4rem;
}
h3,
.fulltext,
.cta {
margin-top: 2rem;
}
.fulltext {
color: var(--color-white-transparent);
}
}
}
@media (width < 900px) {
.Intro {
grid-template-columns: 1fr;
& .intro-text, & .intro-img {
grid-column-start: 1;
}
& .intro-text,
& h2{
align-items: center;
text-align: center;
}
& .intro-img img {
filter: brightness(.5);
}
}
}

View file

@ -0,0 +1,34 @@
<style scoped src="./Intro.css"/>
<template>
<section class="Intro content">
<div class="intro-text">
<h2>
<span class="greeting">Moin.</span>
<span class="my-name-wrapper">Ich bin <span class="highlight">Fiona</span>.</span>
</h2>
<h3>
Component <span class="highlight">&</span> API Entwicklerin
</h3>
<p class="fulltext">
Ich helfe Unternehmen dabei, ihre Daten so richtig nice aufzubereiten
und in wunderschöne Komponenten zu gießen.
</p>
<p class="fulltext">
Mit über 20 Jahren Erfahrung in der Webentwicklung habe ich
inzwischen so ziemlich jeden Stuff miterlebt.
</p>
<p class="fulltext">
Du brauchst großartige Komponenten und saubere Schnittstellen?
</p>
<Button class="cta" label="Lass mal reden" />
</div>
<div class="intro-img">
<img src="/profile.webp" alt="Bild von mir" />
</div>
</section>
</template>
<script setup lang="ts">
</script>