index.tsx 886 B

123456789101112131415161718192021222324252627
  1. import { View, Text } from "@tarojs/components";
  2. import WeComQRcode from "@/components/WeComQRcode";
  3. export const WelcomeCard = () => {
  4. return (
  5. <View>
  6. <View className="font-medium text-black leading-28 mb-4 text-14">
  7. Hi~我是你的 AI 小助手!
  8. </View>
  9. <View className="font-normal text-[#414A64] leading-24 text-12 whitespace-normal pb-12">请将资料发送到我的企业微信,我会自动为你解析内容,并同步到这里。</View>
  10. <WeComQRcode />
  11. </View>
  12. );
  13. };
  14. export const AddSuccessfulTips = () => {
  15. return (
  16. <View>
  17. <Text>
  18. {` 🎉 添加成功!
  19. 你已成功添加 AI 企业微信助手,快将资料发送给它,让知识自动上传到你的智能体吧~
  20. `}
  21. </Text>
  22. <View className="button-rounded button-primary mb-8">前往发送</View>
  23. </View>
  24. );
  25. };