Moved to Nuxt
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
This commit is contained in:
2025-11-18 20:59:23 +01:00
parent 93a4e124ff
commit 99a943eb36
57 changed files with 19126 additions and 718 deletions
+17
View File
@@ -0,0 +1,17 @@
<script setup lang="ts">
const props = defineProps<{
title: string,
description: 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-6xl w-[640px]">{{ title }}</h1>
<h3 class="text-4xl font-normal w-[640px] h-[200px] overflow-hidden text-ellipsis">{{ description }}</h3>
<h3 class="text-3xl font-light italic text-gray-500 mt-2 ml-[420px]">Read more...</h3>
</div>
</div>
</template>