26 lines
914 B
TypeScript
26 lines
914 B
TypeScript
import IP from "@/assets/icons/svg/ip.svg";
|
|
import { ThemedText } from "@/components/ThemedText";
|
|
import { View } from 'react-native';
|
|
|
|
export default function AskHello() {
|
|
|
|
return (
|
|
<View className="flex-1 bg-white overflow-auto w-full">
|
|
{/* 内容区域 IP与介绍文本*/}
|
|
<View className="items-center flex-1">
|
|
<ThemedText className="text-3xl font-bold text-center">
|
|
Hi,
|
|
{"\n"}
|
|
I'm MeMo!
|
|
</ThemedText>
|
|
<View className="justify-center items-center"><IP /></View>
|
|
|
|
<ThemedText className="!text-textPrimary text-center -mt-[4rem]">
|
|
Ready to wake up your memories?
|
|
{"\n"}
|
|
Just ask MeMo, let me bring them back to life!
|
|
</ThemedText>
|
|
</View>
|
|
</View>
|
|
);
|
|
} |