steel-landscape

byangel westling

Minimal landscape mock up with rock garden

HomeSignupEditorPreviewDashboardTemplates
Home

Comments (0)

No comments yet. Be the first!

Project Tasks17

#8

Implement Templates API

To Do

As a user, I want to use the backend API for templates so that I can fetch pre-designed rock garden templates (list, detail, thumbnail URLs) to display on the Templates page. Implement FastAPI endpoints: GET /api/templates (list with filters), GET /api/templates/{id} (detail). Seed initial rock garden template data in MySQL.

AI 75%
Human 25%
Medium Priority
1.5 days
AI Credits:5
Backend Developer
#9

Implement Designs CRUD API

To Do

As a user, I want to use the backend API for designs so that I can create, read, update, and delete my landscape design mockups from the Editor and Dashboard. Implement FastAPI endpoints: POST /api/designs, GET /api/designs (user's designs), GET /api/designs/{id}, PUT /api/designs/{id}, DELETE /api/designs/{id}. Store design canvas state (element positions, materials, template base) as JSON in MySQL.

AI 75%
Human 25%
Medium Priority
2 days
AI Credits:6
Backend Developer
#1

Implement Theme & Global Styles

To Do

As a frontend developer, I want to implement the steel-landscape design system (color tokens, typography, spacing) across the scaffold project so that all existing pages (home, login, signup, welcome, dashboard, ai-assistant, settings) inherit the correct theme. Apply the palette: Soft Gray (#D3D3D3) backgrounds, Earthy Brown (#8B4513) accents, Sage Green (#9DC183), Stone White (#F5F5F5), and Deep Blue (#4682B4). Set up CSS custom properties / Tailwind config. Remove any pages not present in the user flows or design pages (e.g. standalone welcome page if not in flows). This task must be completed before all other UI tasks.

AI 80%
Human 20%
High Priority
1 day
AI Credits:4
Frontend Developer
#2

Build Home Page

To Do

As a user, I want to use the frontend Home page so that I can view the interactive zen garden centerpiece, explore features, and navigate to 'Start Designing' or 'Browse Templates'. Implement the Home (v2) JSX design exactly — including the animated raked-sand zen garden, drifting leaf ambient animations, interactive sand-raking on click/drag, dynamic rock placement, and the pulsing 'Start Designing' CTA button. Follows the Guest and Homeowner flows: Home → Templates. Remove or redirect any placeholder home page content.

Depends on:#1
Waiting for dependencies
AI 90%
Human 10%
High Priority
2 days
AI Credits:8
Frontend Developer
#3

Build Signup Page

To Do

As a user, I want to use the frontend Signup page so that I can create an account after trying the editor demo. Implement the Signup (v2) JSX design exactly — form fields, validation UI, branding, and navigation back to Login or forward to Dashboard. Follows the Guest flow: Editor → Signup → Dashboard.

Depends on:#1
Waiting for dependencies
AI 88%
Human 12%
High Priority
1 day
AI Credits:5
Frontend Developer
#13

Implement AI Landscape Visuals API

To Do

As a user, I want to use the AI API so that I can generate realistic landscaping visuals for my rock garden design using Google Nano Banana via Langchain. Implement a FastAPI endpoint POST /api/ai/generate-visual that accepts design parameters (materials, layout dimensions, style) and returns a generated image URL or base64. Integrate Langchain prompt management for the AI model.

Depends on:#9
Waiting for dependencies
AI 70%
Human 30%
Medium Priority
2.5 days
AI Credits:8
AI Engineer
#16

Implement PDF Export API

To Do

As a user, I want to use the backend API for PDF export so that I can download a printable summary of my rock garden design mockup. Implement FastAPI endpoint GET /api/designs/{id}/export/pdf that renders the design metadata, material list, and canvas snapshot into a PDF file (using a Python PDF library). Return the PDF as a file download.

Depends on:#9
Waiting for dependencies
AI 70%
Human 30%
Low Priority
1.5 days
AI Credits:5
Backend Developer
#4

Build Templates Page

To Do

As a user, I want to use the frontend Templates page so that I can browse pre-designed rock garden templates and select one to open in the Editor. Implement the Templates (v2) JSX design exactly — template cards with thumbnails, names, filter/search UI, and 'Use This Template' actions. Follows both flows: Home → Templates → Editor.

Depends on:#1
Waiting for dependencies
AI 88%
Human 12%
High Priority
1.5 days
AI Credits:6
Frontend Developer
#7

Build Dashboard Page

To Do

As a user, I want to use the frontend Dashboard page so that I can view, manage, and save my landscape design mockups, access the AI assistant, and configure settings. Implement the Dashboard (v2) JSX design exactly — overview panel with saved designs, quick stats, navigation to Editor, and sidebar links to AI Assistant and Settings sub-pages. Follows both flows: Signup/Preview → Dashboard → Save Mockup.

Depends on:#3#1
Waiting for dependencies
AI 88%
Human 12%
High Priority
2 days
AI Credits:7
Frontend Developer
#14

Build AI Assistant Dashboard Page

To Do

As a user, I want to use the frontend AI Assistant page in the dashboard so that I can chat with the AI to get landscaping suggestions, generate visuals, and receive design recommendations. Implement the chat UI with message history, input field, and integration with the AI Landscape Visuals API. Accessible from the Dashboard sidebar.

Depends on:#13#1
Waiting for dependencies
AI 82%
Human 18%
Medium Priority
1.5 days
AI Credits:6
Frontend Developer
#5

Build Editor Page

To Do

As a user, I want to use the frontend Editor page so that I can drag and drop landscaping elements, customize layouts, select materials, and visualize my rock garden design in real time. Implement the Editor (v2) JSX design exactly — canvas area, element palette, drag-and-drop interactions, undo/redo controls, material selection panel, and navigation to Preview. Follows Homeowner flow: Templates → Editor → Customize → Preview.

Depends on:#1#4
Waiting for dependencies
AI 85%
Human 15%
High Priority
3 days
AI Credits:9
Frontend Developer
#11

Integrate Templates Page with API

To Do

As a user, I want to use the frontend Templates page so that real template data is fetched from the backend and displayed dynamically. Wire up GET /api/templates with loading states, error handling, and filter/search functionality connected to API query params.

Depends on:#4#8
Waiting for dependencies
AI 80%
Human 20%
Medium Priority
0.5 days
AI Credits:3
Frontend Developer
#15

Build Settings Dashboard Page

To Do

As a user, I want to use the frontend Settings page in the dashboard so that I can update my profile, preferences (measurement units: ft/in, currency: USD), and notification settings. Implement settings form with save/cancel actions, wired to a backend PATCH /api/users/me endpoint. Accessible from the Dashboard sidebar.

Depends on:#1#7
Waiting for dependencies
AI 78%
Human 22%
Low Priority
1 day
AI Credits:4
Frontend Developer
#10

Integrate Editor with Backend

To Do

As a user, I want to use the frontend Editor page so that my drag-and-drop design changes are auto-saved and persisted via the Designs CRUD API. Wire up API calls: load design on open, periodic auto-save (debounced PUT), and explicit save action. Handle loading and error states in the UI.

Depends on:#5#9
Waiting for dependencies
AI 78%
Human 22%
Medium Priority
1 day
AI Credits:5
Frontend Developer
#12

Integrate Dashboard with Designs API

To Do

As a user, I want to use the frontend Dashboard page so that my saved designs are loaded from the backend and I can delete or rename them. Wire up GET /api/designs, DELETE /api/designs/{id}, and PATCH for rename. Show empty state when no designs exist.

Depends on:#9#7
Waiting for dependencies
AI 78%
Human 22%
Medium Priority
1 day
AI Credits:4
Frontend Developer
#6

Build Preview Page

To Do

As a user, I want to use the frontend Preview page so that I can visualize my final rock garden design in a high-fidelity read-only canvas, review design stats, see suggested templates, and save or export my mockup. Implement the Preview (v2) JSX design exactly — including PreviewNavBar, DesignSummaryBanner, DesignMetaPanel, MaterialsLegend, ActionsSidebar, CanvasPreviewArea (with Day/Dusk toggle and parallax), DesignStatsBar, SuggestedTemplates, and PreviewFooter sections. Follows Homeowner flow: Editor → Preview → Dashboard.

Depends on:#1#5
Waiting for dependencies
AI 90%
Human 10%
High Priority
2 days
AI Credits:8
Frontend Developer
#17

Integrate Preview Page with APIs

To Do

As a user, I want to use the frontend Preview page so that real design data, material costs, stats, and the AI-generated visual are loaded from the backend. Wire up GET /api/designs/{id} for design metadata and canvas state, GET /api/designs/{id}/export/pdf for the download button, and POST /api/ai/generate-visual for the high-fidelity canvas render. Handle Day/Dusk view toggle on the client side.

Depends on:#16#6#13#9
Waiting for dependencies
AI 80%
Human 20%
Medium Priority
1 day
AI Credits:5
Frontend Developer
Home design preview
Home: View Zen Garden
Home: Explore Features
Templates: Browse Rock Gardens
Editor: Try Demo
Editor: Drag Drop Elements
Signup: Create Account
Dashboard: Save Design