24 lines
804 B
Vue
24 lines
804 B
Vue
<template>
|
|
<NuxtPage />
|
|
|
|
<!-- <Section>
|
|
<div class="grid rounded-lg from-violet-500 to-fuchsia-500 bg-gradient-to-r p-5 text-white shadow-lg lg:(grid-cols-2)">
|
|
<ATypography
|
|
class="text-white"
|
|
title="联系我们"
|
|
subtitle="使用下方的联系方式和我们沟通,或者留下您的邮箱"
|
|
:text="['+86 12312314', 'text-sm']"
|
|
/>
|
|
<div h-full w-full flex flex-col items-center justify-center gap-3>
|
|
<div flex items-center gap-3>
|
|
<AInput placeholder="邮箱" class="col-start-1 w-full text-sm" input-wrapper-classes="bg-light-50" />
|
|
<ABtn>test</ABtn>
|
|
</div>
|
|
<ACheckbox>
|
|
<span>同意接收来自我们的消息</span>
|
|
</ACheckbox>
|
|
</div>
|
|
</div>
|
|
</Section> -->
|
|
</template>
|