mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-10 15:58:38 +01:00
new landing page ui
This commit is contained in:
26
landing/components/Testimonial.vue
Normal file
26
landing/components/Testimonial.vue
Normal 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>
|
||||
Reference in New Issue
Block a user