import { View, Text, Pressable } from "react-native"; import { useRouter } from "expo-router"; import { useTheme } from "../components/theme"; export default function NotFound() { const theme = useTheme(); const router = useRouter(); return ( Страницата не е пронајдена Страницата што ја барате не постои. router.replace("/(tabs)/(home)")} style={{ backgroundColor: theme.colors.primary, borderRadius: theme.radius.md, paddingVertical: 12, paddingHorizontal: 24 }} > Начална страница ); }