From 7eb8ccae48b0cc18a9dcaa9c3626a02df8e6d919 Mon Sep 17 00:00:00 2001 From: JustZvan Date: Fri, 6 Feb 2026 13:22:33 +0100 Subject: feat: initial commit! --- app/(auth)/welcome.tsx | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 app/(auth)/welcome.tsx (limited to 'app/(auth)/welcome.tsx') diff --git a/app/(auth)/welcome.tsx b/app/(auth)/welcome.tsx new file mode 100644 index 0000000..9062c12 --- /dev/null +++ b/app/(auth)/welcome.tsx @@ -0,0 +1,64 @@ +import { router } from "expo-router"; +import { Image, StyleSheet, View } from "react-native"; +import { SafeAreaView } from "react-native-safe-area-context"; +import { t } from "../../lib/locales"; +import { colors } from "../../lib/theme"; +import { Button, H1, Muted } from "../../lib/ui"; + +import dogLogo from "../../assets/images/dog-logo.png"; + +export default function Welcome() { + return ( + + + + + + +

{t("welcomeTitle")}

+ {t("welcomeSubtitle")} +
+ + +