diff --git a/app/+not-found.tsx b/app/+not-found.tsx
index 0282d9d..e9a7c2e 100644
--- a/app/+not-found.tsx
+++ b/app/+not-found.tsx
@@ -1,6 +1,6 @@
import { Link, Stack } from 'expo-router';
import { StyleSheet, Text, View } from 'react-native';
-import { spacing, useTheme } from '@/src/theme';
+import { radius, spacing, useTheme } from '@/src/theme';
export default function NotFoundScreen() {
const { colors } = useTheme();
@@ -9,7 +9,12 @@ export default function NotFoundScreen() {
This screen does not exist.
-
+
Go to trails
@@ -20,5 +25,13 @@ export default function NotFoundScreen() {
const styles = StyleSheet.create({
container: { flex: 1, alignItems: 'center', justifyContent: 'center', padding: spacing.xl },
title: { fontSize: 18, fontWeight: '600' },
- link: { marginTop: spacing.lg, fontSize: 16 },
+ link: {
+ marginTop: spacing.lg,
+ paddingHorizontal: spacing.lg,
+ paddingVertical: spacing.sm,
+ borderRadius: radius.pill,
+ overflow: 'hidden',
+ fontSize: 16,
+ fontWeight: '700',
+ },
});