99a943eb36
pipeline / build-and-push-images (push) Successful in 3m12s
NuxtJS, Vue, real web app Nuxt content: blog Better mobile/responsive design and practices Better practices overall
17 lines
613 B
Vue
17 lines
613 B
Vue
<script setup lang="ts">
|
|
const props = defineProps<{
|
|
title: string
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<div class="h-full w-full flex flex-row">
|
|
<img class="rounded-full h-[450px] w-[450px] m-10" src="/photo_web.JPG" />
|
|
<div class="mt-8 flex flex-col">
|
|
<h1 class="text-8xl w-[640px]">{{ title }}</h1>
|
|
<h2 class="text-6xl font-normal w-[640px]">Valentin Haudiquet</h2>
|
|
<h3 class="text-4xl font-normal w-[640px]">Software engineer at Canonical</h3>
|
|
<h4 class="text-3xl font-normal w-[640px]">Working on Ubuntu support for RISC-V architecture</h4>
|
|
</div>
|
|
</div>
|
|
</template> |