feat(quote-page): Add QuotePage component with React logic and VIP frontend UI for displaying quotes

Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
autocommit 2026-05-17 01:07:36 -07:00
parent 9b2c279ef2
commit 64653fbc61

View file

@ -4,6 +4,7 @@ import { useParams } from '@lilith/ui-router';
import { fetchQuote, VipApiError, type VipQuote, type VipQuotePresentation } from '@/api';
import { getAnimation, type AnimationPhase } from '@/components/animations/registry';
import { DevTweakPanel } from '@/components/dev/DevTweakPanel';
type LoadState =
| { kind: 'fetching' }
@ -128,6 +129,7 @@ export function QuotePage(): ReactElement {
return (
<div style={rootStyle}>
<div style={glowStyle} />
<DevTweakPanel />
{renderCombo && comboDescriptor && (
<comboDescriptor.Component
key={`combo-${attempt}`}