app/
├── (auth)/ # Route groups
├── (home)/
├── (profile)/
├── admin/ # Admin dashboard
│ ├── archive/
│ ├── collections/
│ ├── enhanced/
│ ├── my-tree/
│ ├── overview/
│ ├── settings/
│ └── tools/
├── api/ # API routes
│ ├── archive/
│ ├── collections/
│ ├── dashboard/
│ ├── links/
│ ├── og-data/
│ ├── profile/
│ ├── settings/
│ ├── shortener/
│ └── social-links/
├── form-action-test/ # TEST FILES (REMOVE)
├── responsive-test/ # TEST FILES (REMOVE)
├── simple-native-test/ # TEST FILES (REMOVE)
├── simple-settings-test/ # TEST FILES (REMOVE)
├── templates/
├── test-button/ # TEST FILES (REMOVE)
└── s/ # URL shortener redirect
app/
├── (auth)/ # Authentication pages
│ ├── sign-in/
│ └── sign-up/
├── (dashboard)/ # Main dashboard
│ ├── admin/
│ ├── overview/
│ ├── settings/
│ └── tools/
├── api/ # API endpoints
│ ├── auth/
│ ├── links/
│ ├── profile/
│ └── shortener/
├── [username]/ # Public profiles
├── s/ # Short URL redirects
├── globals.css
├── layout.tsx
├── page.tsx
└── not-found.tsx