new landing page ui

This commit is contained in:
Emily
2024-07-23 18:13:45 +02:00
parent 3eb32145aa
commit e6c9ad9470
7 changed files with 459 additions and 109 deletions

View File

@@ -0,0 +1,26 @@
<script lang="ts" setup>
const props = defineProps<{
name: string,
sub: string,
linkText: string,
link: string,
text: string
}>();
</script>
<template>
<LyxUiCard>
<div class="flex flex-col gap-4">
<div>
<div>{{ name }}</div>
<div>{{ sub }} <NuxtLink class="text-lyx-primary" :to="link" target="_blank">{{ linkText }}</NuxtLink>
</div>
</div>
<div>
{{ text }}
</div>
</div>
</LyxUiCard>
</template>