- docs/stories/pub-1-shadcn-ui-consistency.md - docs/stories/pub-2-parallax-split-hero.md - docs/stories/pub-3-search-with-filters.md - docs/stories/pub-4-quick-search-cmdk.md - docs/stories/pub-5-aftercare-enhancements.md - docs/stories/pub-6-galleries-lightbox.md Each story: - Mirrors PRD acceptance criteria verbatim - Includes actionable Tasks/Subtasks aligned to repo components (e.g., components/hero-section.tsx, components/artist-portfolio.tsx, data/artists.ts) - Provides Dev Notes referencing docs/ui-architecture.md and docs/PRD.md - Includes Testing guidance (Vitest/RTL and a11y expectations) - Reserves Dev Agent Record and QA Results sections for subsequent phases
3 lines
615 B
SQL
3 lines
615 B
SQL
CREATE TABLE IF NOT EXISTS tags (tag TEXT NOT NULL, path TEXT NOT NULL, UNIQUE(tag, path) ON CONFLICT REPLACE);
|
|
CREATE TABLE IF NOT EXISTS revalidations (tag TEXT NOT NULL, revalidatedAt INTEGER NOT NULL, UNIQUE(tag) ON CONFLICT REPLACE);
|
|
INSERT INTO tags (tag, path) VALUES ("moUXVtzs2Bhk2eoEY-sub/_N_T_/layout", "moUXVtzs2Bhk2eoEY-sub/favicon.ico"), ("moUXVtzs2Bhk2eoEY-sub/_N_T_/favicon.ico/layout", "moUXVtzs2Bhk2eoEY-sub/favicon.ico"), ("moUXVtzs2Bhk2eoEY-sub/_N_T_/favicon.ico/route", "moUXVtzs2Bhk2eoEY-sub/favicon.ico"), ("moUXVtzs2Bhk2eoEY-sub/_N_T_/favicon.ico", "moUXVtzs2Bhk2eoEY-sub/favicon.ico"); |