Page Walkthrough
Overview
- Page count:
13 - Screenshot capture key space:
todo
Page Index
| Route | Title | Access | File |
|---|---|---|---|
/ | Daily Log Dashboard | authenticated | src/app/page.tsx |
/analytics | Analytics Overview | authenticated | src/app/analytics/page.tsx |
/analytics/monthly | Monthly Analytics | authenticated | src/app/analytics/monthly/page.tsx |
/analytics/weekly | Weekly Analytics | authenticated | src/app/analytics/weekly/page.tsx |
/calendar | Calendar | authenticated | src/app/calendar/page.tsx |
/login | Login | public | src/app/login/page.tsx |
/planning | Planning | authenticated | src/app/planning/page.tsx |
/settings/automation | Automation Settings | authenticated | src/app/settings/automation/page.tsx |
/settings/categories | Category Settings | authenticated | src/app/settings/categories/page.tsx |
/settings/projects | Project Settings | authenticated | src/app/settings/projects/page.tsx |
/settings/team | Team Settings | authenticated | src/app/settings/team/page.tsx |
/setup | Initial Setup | public | src/app/setup/page.tsx |
/team | Team Overview | authenticated | src/app/team/page.tsx |
Daily Log Dashboard
- Route:
/ - Access:
authenticated - Source file:
src/app/page.tsx - Audience: Individual contributors, Team leads, Leadership
- Purpose: Daily execution dashboard for logging work, reviewing today, and tracking actual effort. No extra notes for this page.
Analytics Overview
- Route:
/analytics - Access:
authenticated - Source file:
src/app/analytics/page.tsx - Audience: Individual contributors, Team leads, Leadership
- Purpose: Analytics overview that summarizes activity patterns and execution trends. No extra notes for this page.
Monthly Analytics
- Route:
/analytics/monthly - Access:
authenticated - Source file:
src/app/analytics/monthly/page.tsx - Audience: Individual contributors, Team leads, Leadership
- Purpose: Monthly reporting page for comparing work patterns over a longer planning horizon. No extra notes for this page.
Weekly Analytics
- Route:
/analytics/weekly - Access:
authenticated - Source file:
src/app/analytics/weekly/page.tsx - Audience: Individual contributors, Team leads, Leadership
- Purpose: Weekly analytics page focused on short-horizon trends and output rhythm. No extra notes for this page.
Calendar
- Route:
/calendar - Access:
authenticated - Source file:
src/app/calendar/page.tsx - Audience: Individual contributors, Team leads, Leadership
- Purpose: Calendar-style view of logged activity history. No extra notes for this page.
Login
- Route:
/login - Access:
public - Source file:
src/app/login/page.tsx - Audience: Anyone with a link or account
- Purpose: Primary sign-in page for returning users. No extra notes for this page.
Planning
- Route:
/planning - Access:
authenticated - Source file:
src/app/planning/page.tsx - Audience: Individual contributors, Team leads, Leadership
- Purpose: Planning page for allocating expected time across categories and projects. No extra notes for this page.
Automation Settings
- Route:
/settings/automation - Access:
authenticated - Source file:
src/app/settings/automation/page.tsx - Audience: Individual contributors, Team leads, Leadership
- Purpose: Operational settings for exports and automated behaviors. No extra notes for this page.
Category Settings
- Route:
/settings/categories - Access:
authenticated - Source file:
src/app/settings/categories/page.tsx - Audience: Individual contributors, Team leads, Leadership
- Purpose: Configuration page for the activity categories users log against. No extra notes for this page.
Project Settings
- Route:
/settings/projects - Access:
authenticated - Source file:
src/app/settings/projects/page.tsx - Audience: Individual contributors, Team leads, Leadership
- Purpose: Configuration page for projects and project-level tracking labels. No extra notes for this page.
Team Settings
- Route:
/settings/team - Access:
authenticated - Source file:
src/app/settings/team/page.tsx - Audience: Individual contributors, Team leads, Leadership
- Purpose: Team administration page for roles, membership, and collaboration settings. No extra notes for this page.
Initial Setup
- Route:
/setup - Access:
public - Source file:
src/app/setup/page.tsx - Audience: Individual contributors, Team leads, Leadership
- Purpose: First-run account creation page used before the initial owner account exists.
- This page is only relevant before the first account is created.
Team Overview
- Route:
/team - Access:
authenticated - Source file:
src/app/team/page.tsx - Audience: Individual contributors, Team leads, Leadership
- Purpose: Team overview page for shared visibility across members and activity. No extra notes for this page.