index.tsx 1012 B

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