import { View, Text, TouchableOpacity } from "react-native";
import { SafeAreaView } from "react-native-safe-area-context";
import * as Linking from "expo-linking";
export default function AboutPage() {
return (
About
{
Linking.openURL("https://github.com/kennethnym/doors-wallpaper");
}}
/>
{
Linking.openURL("mailto:kennethnym@outlook.com");
}}
/>
{
Linking.openURL("https://x.com/kennethnym");
}}
/>
{
Linking.openURL("https://github.com/kennethnym");
}}
/>
);
}
function AboutItem({
title,
description,
onPress,
}: { title: string; description: string; onPress: () => void }) {
return (
{title}
{description}
);
}