import Constants from "expo-constants";
import Head from "expo-router/head";
import { Text, View } from "react-native";
export default function Terms() {
const appName = Constants.expoConfig?.name || 'App';
return (
<View
style={{
flex: 1,
justifyContent: "center",
alignItems: "center",
}}
>
<Head>
<title>{appName} - Terms</title>
</Head>
<Text>Edit app/terms.tsx to edit this screen.</Text>
</View>
);
}