app/
├── (tabs)/ # Bottom tab navigation
│ ├── index.tsx # Home feed
│ ├── discover.tsx # Discover content
│ ├── search.tsx # Global search
│ ├── saved.tsx # Saved items & collections
│ └── profile.tsx # Current user profile
├── create.tsx # Create modal (transparent modal presentation)
├── saved-items.tsx # Uncategorized saved items list
├── notifications.tsx # Notifications inbox
├── profile/[username].tsx # Other user's profile
├── connections/[username].tsx # User connections
├── followers/[username].tsx # Followers list
├── following/[username].tsx # Following list
├── recipe/[id].tsx # Recipe detail
│ └── edit.tsx # Recipe edit
├── post/[id].tsx # Post detail
│ └── edit.tsx # Post edit
├── collection/[id].tsx # Collection detail
│ └── edit.tsx # Collection edit
├── recipe/new.tsx # Recipe create
├── post/new.tsx # Post create
├── collection/new.tsx # Collection create
├── login.tsx # Login screen
├── forgot-password.tsx # Password reset request
├── register.tsx # Registration
├── register-success.tsx # Registration confirmation
├── settings.tsx # Account settings
└── _layout.tsx # Root providers, modal/push screen config