aboutsummaryrefslogtreecommitdiffstats
path: root/packages/mobile/app/dashboard/_layout.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/mobile/app/dashboard/_layout.tsx')
-rw-r--r--packages/mobile/app/dashboard/_layout.tsx17
1 files changed, 16 insertions, 1 deletions
diff --git a/packages/mobile/app/dashboard/_layout.tsx b/packages/mobile/app/dashboard/_layout.tsx
index 590c82b1..4dd03d95 100644
--- a/packages/mobile/app/dashboard/_layout.tsx
+++ b/packages/mobile/app/dashboard/_layout.tsx
@@ -3,7 +3,22 @@ import { Stack } from "expo-router/stack";
export default function Dashboard() {
return (
<Stack>
- <Stack.Screen name="(tabs)" options={{ headerShown: false }} />
+ <Stack.Screen
+ name="(tabs)"
+ options={{ headerShown: false, title: "Home" }}
+ />
+ <Stack.Screen
+ name="favourites"
+ options={{
+ title: "⭐️ Favourites",
+ }}
+ />
+ <Stack.Screen
+ name="archive"
+ options={{
+ title: "🗄️ Archive",
+ }}
+ />
</Stack>
);
}