first commit

This commit is contained in:
2026-03-10 16:18:05 +00:00
commit 11f9c069b5
31635 changed files with 3187747 additions and 0 deletions

14
app/_layout.tsx Normal file
View File

@@ -0,0 +1,14 @@
import { Stack } from 'expo-router';
export default function Layout() {
return (
<Stack screenOptions={{ headerShown: false }}>
{/* O 'index' refere-se ao ficheiro app/index.tsx (o teu Login) */}
<Stack.Screen name="index" options={{ title: 'Login' }} />
<Stack.Screen name="registo" />
<Stack.Screen name="esqueciPalavraPasse" />
<Stack.Screen name="inicio" />
</Stack>
);
}