New frontend#2
Conversation
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
plate-gallery | 9a48d84 | Commit Preview URL Branch Preview URL |
Apr 18 2026, 05:14 PM |
|
Caution Review failedThe pull request is closed. ℹ️ Recent review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Plus Run ID: ⛔ Files ignored due to path filters (5)
📒 Files selected for processing (48)
📝 WalkthroughWalkthroughThis pull request introduces a comprehensive frontend redesign: removes legacy components (Container, Divider, Eyebrow, FullBleed, RevealOnScroll), adds new design-focused components (Plate, PhotoSnap, Pill, StateBadge, LogoMark), redesigns all page layouts with new information architecture, introduces a mock data system for demo mode, and adds an interactive design canvas gallery application for design system exploration. Changes
Sequence DiagramsequenceDiagram
participant User
participant App as App (Root)
participant ErrorBoundary as AppErrorBoundary
participant AuthProvider
participant APILayer as API / Mock Handler
participant Database as Supabase / Mock Data
User->>App: Open application
App->>ErrorBoundary: Wrap app tree
ErrorBoundary->>AuthProvider: Initialize auth context
AuthProvider->>APILayer: Check session
alt Mock Mode Enabled
APILayer->>APILayer: isMockMode() returns true
APILayer->>Database: handleMockRequest (in-memory)
Database->>APILayer: Return mock data
else Production Mode
APILayer->>Database: fetch with real Supabase client
Database->>APILayer: Return data or auth error
end
APILayer->>AuthProvider: Session/User resolved
AuthProvider->>App: Auth context ready, render page
alt Render Error Occurs
App->>ErrorBoundary: Throw error
ErrorBoundary->>User: Show "RENDER ERROR" fallback with reload button
else Success
App->>User: Render page with ConfigBanner if not supabaseConfigured
end
Estimated code review effort🎯 5 (Critical) | ⏱️ ~120 minutes
✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Comment |
Summary by CodeRabbit
Release Notes
New Features
Major UI Redesigns
Bug Fixes & Improvements