Big progress on personal cv from pdf to html

This commit is contained in:
BOTAlex 2024-06-05 04:32:16 +02:00
parent 88a86fe2b0
commit 23ade8d085
9 changed files with 220 additions and 71 deletions

View file

@ -0,0 +1,23 @@
<script lang="ts">
import NamePlate from "./NamePlate.svelte";
import selfie from "$lib/zhen/cv-comps/zhenSelfie.jpg"
</script>
<div class="nameAndImageContainer">
<NamePlate/>
<img src={selfie} class="selfie-constraints" alt="nothing"/>
</div>
<style>
.nameAndImageContainer {
display: grid;
place-items: center;
}
.selfie-constraints{
padding-top: 2.5mm;
max-width: 65%;
border-radius: 5mm;
}
</style>