Files
estel_docs/app/components/example/ExampleLandingHero.vue
estel ce50120e40
Some checks failed
CI / lint (push) Failing after 29m56s
CI / typecheck (push) Failing after 8m26s
CI / build (ubuntu-latest) (push) Failing after 18s
更改页面的内容
2025-07-31 15:04:22 +08:00

23 lines
519 B
Vue

<script setup lang="ts">
defineProps<{
image: string
}>()
</script>
<template>
<section class="flex flex-col sm:flex-row sm:items-center gap-4 py-8 sm:gap-12 sm:py-12 h-[331px]">
<div class="flex flex-col gap-1">
<h1 class="text-4xl font-semibold">
<slot name="title" />
</h1>
<div class="text-base text-gray-600 dark:text-gray-300">
<slot name="description" />
</div>
</div>
<img
:src="image"
class="w-1/2 rounded-lg"
>
</section>
</template>