Ramble-FE / app / (web) / (tabs) / about.tsx
about.tsx
Raw
import Constants from "expo-constants";
import Head from "expo-router/head";
import { Text, View } from "react-native";

export default function About() {
    const appName = Constants.expoConfig?.name || 'App';

    return (
        <View
            style={{
                flex: 1,
                justifyContent: "center",
                alignItems: "center",
            }}
        >
            <Head>
                <title>{appName} - About Us</title>
            </Head>
            <Text>Edit app/about.tsx to edit this screen.</Text>
        </View>
    );
}