123456789101112131415161718192021222324252627282930 |
- import { View } from "@tarojs/components";
- import style from "./index.module.less";
- export default function Index() {
- const go = ()=> {
- console.log('gogogo')
- }
- return (
- <View className={style.container}>
- <View className={style.hello}>你好</View>
- <View className={style.welcome}>欢迎你,小蓝本的第39293位用户</View>
- <View className={style.box}>
- <View className={style.boxInner}>
- <View className={style.headline}>
- <View>开启你的专属 AI 分身,</View>
- <View>让客户随时随地了解你和你的解决方案。</View>
- </View>
- <View className={style.list}>
- <View>1.企业 + 个人资料统一管理</View>
- <View>2.客户问题,AI 自动回应</View>
- <View>3.你的内容,一页呈现</View>
- </View>
- <View className="rounded-button-big" onClick={go}>创建智能体</View>
- </View>
- </View>
- </View>
- );
- }
|