import * as Linking from "expo-linking"; import { Pressable } from "react-native"; import { View } from "react-native"; import { useTranslation } from "@turbostarter/i18n"; import { Text } from "@turbostarter/ui-mobile/text"; export default function Notifications() { const { t } = useTranslation(["common", "marketing"]); return ( {t("workInProgress.title")} {t("workInProgress.description", { feature: t("notifications") })} Linking.openURL("https://github.com/orgs/turbostarter/projects/1") } className="mt-6" > {t("seeRoadmap")} ); }