-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathai-patterns.json
More file actions
645 lines (645 loc) · 23.3 KB
/
Copy pathai-patterns.json
File metadata and controls
645 lines (645 loc) · 23.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
{
"$schema": "./schemas/ai-patterns-v1.schema.json",
"name": "@ai-ds/core",
"version": "0.7.6",
"description": "AICADS pattern manifest — distributable blocks, spacing recipes, and page templates for AI/Replit assemblers.",
"conventions": {
"blockImport": "import { HeroBlock } from '@ai-ds/core/blocks/HeroBlock'",
"pageImport": "import { LandingPageTemplate } from '@ai-ds/core/blocks/LandingPageTemplate'",
"recipeImport": "import { resolveRecipe, SPACING_RECIPES } from '@ai-ds/core/recipes'",
"patternsJson": "import patterns from '@ai-ds/core/patterns' assert { type: 'json' }"
},
"patterns": {
"marketing.hero.centered": {
"block": "HeroBlock",
"recipe": "section.hero",
"category": "marketing",
"primitives": [
"SectionHeader",
"Button",
"Paragraph",
"Badge"
],
"storyReference": "Blocks/Marketing/HeroBlock",
"uxReference": "shadcn:hero-01",
"whenToUse": "Landing page above-the-fold with primary and secondary CTA"
},
"marketing.hero.split": {
"block": "HeroBlock",
"recipe": "section.hero",
"category": "marketing",
"primitives": [
"SectionHeader",
"Button",
"Paragraph",
"Badge",
"Image"
],
"storyReference": "Blocks/Marketing/HeroBlock",
"uxReference": "shadcn:hero-02",
"whenToUse": "Split hero with media column and optional stats row"
},
"marketing.hero.enterprise": {
"block": "HeroBlock",
"recipe": "section.hero",
"category": "marketing",
"variant": "enterprise",
"primitives": [
"SectionHeader",
"Button",
"Paragraph",
"Badge"
],
"storyReference": "Blocks/Marketing/HeroBlock/Enterprise",
"uxReference": "cortel.cloud",
"whenToUse": "B2B enterprise above-fold — split stage (headline + CTA + media), bottom metrics band with inline description (Cortel-style)"
},
"marketing.hero.page": {
"block": "HeroBlock",
"recipe": "section.hero.page",
"category": "marketing",
"variant": "page",
"primitives": [
"Breadcrumb",
"Badge",
"SectionHeader"
],
"storyReference": "Blocks/Marketing/HeroBlock/Page",
"uxReference": "cortel.cloud",
"whenToUse": "Inner page hero — breadcrumb trail, category badge, and display title on brand band (case study / detail pages)"
},
"marketing.navbar.sticky": {
"block": "NavbarBlock",
"recipe": "section.navbar",
"category": "marketing",
"primitives": [
"Link",
"Button"
],
"storyReference": "Blocks/Marketing/NavbarBlock",
"whenToUse": "Top navigation with logo, links, and optional CTA"
},
"marketing.navbar.enterprise": {
"block": "NavbarBlock",
"recipe": "section.navbar",
"category": "marketing",
"variant": "enterprise",
"primitives": [
"Button",
"Tabs",
"Tab",
"Drawer"
],
"storyReference": "Blocks/Marketing/NavbarBlock/ServicesMenuOpen",
"whenToUse": "Sticky overlay navbar with phone block, account/lead CTAs, static social rail below header, and tabbed services mega menu (desktop/tablet/mobile drawer)"
},
"marketing.logos.cloud": {
"block": "LogoCloudBlock",
"recipe": "section.logos",
"category": "marketing",
"primitives": [
"Paragraph"
],
"storyReference": "Blocks/Marketing/LogoCloudBlock",
"whenToUse": "Social proof logo strip below hero"
},
"marketing.stats.band": {
"block": "StatsBlock",
"recipe": "section.stats",
"category": "marketing",
"primitives": [
"Paragraph"
],
"storyReference": "Blocks/Marketing/StatsBlock",
"whenToUse": "Key metrics band on brand background"
},
"marketing.features.grid": {
"block": "FeaturesBlock",
"recipe": "section.features",
"category": "marketing",
"primitives": [
"SectionHeader",
"Card",
"GridContainer",
"GridItem",
"Paragraph"
],
"storyReference": "Blocks/Marketing/FeaturesBlock",
"uxReference": "shadcn:features-01",
"whenToUse": "Feature grid with 2 or 3 columns and optional icons"
},
"marketing.steps.three": {
"block": "HowItWorksBlock",
"recipe": "section.steps",
"category": "marketing",
"primitives": [
"Paragraph"
],
"storyReference": "Blocks/Marketing/HowItWorksBlock",
"whenToUse": "Numbered how-it-works steps (3–4 columns)"
},
"marketing.pricing.three-tier": {
"block": "PricingBlock",
"recipe": "section.pricing",
"category": "marketing",
"primitives": [
"SectionHeader",
"Card",
"Button",
"Badge",
"Divider"
],
"storyReference": "Blocks/Marketing/PricingBlock",
"uxReference": "shadcn:pricing-01",
"whenToUse": "Three-tier pricing comparison with highlighted plan"
},
"marketing.testimonials.grid": {
"block": "TestimonialsBlock",
"recipe": "section.testimonials",
"category": "marketing",
"primitives": [
"Paragraph",
"Card"
],
"storyReference": "Blocks/Marketing/TestimonialsBlock",
"whenToUse": "Customer quotes in a responsive grid"
},
"marketing.faq.accordion": {
"block": "FAQBlock",
"recipe": "section.faq",
"category": "marketing",
"primitives": [
"Accordion",
"Paragraph"
],
"storyReference": "Blocks/Marketing/FAQBlock",
"whenToUse": "FAQ section with collapsible answers — default compact accordion"
},
"marketing.faq.enterprise": {
"block": "FAQBlock",
"recipe": "section.faq",
"category": "marketing",
"primitives": [
"Accordion",
"Paragraph"
],
"storyReference": "Blocks/Marketing/FAQBlock",
"uxReference": "cortel.cloud/importozameshhenie-vmware",
"whenToUse": "FAQ card accordion — muted rounded items, plus toggle button, Cortel vmware landing"
},
"marketing.cta.banner": {
"block": "CTABlock",
"recipe": "section.cta",
"category": "marketing",
"primitives": [
"SectionHeader",
"Card",
"Button",
"Paragraph"
],
"storyReference": "Blocks/Marketing/CTABlock",
"uxReference": "shadcn:cta-01",
"whenToUse": "Mid-page or pre-footer call-to-action card"
},
"marketing.cta.band": {
"block": "CTABlock",
"recipe": "section.cta",
"category": "marketing",
"primitives": [
"SectionHeader",
"Button",
"Paragraph"
],
"storyReference": "Blocks/Marketing/CTABlock",
"whenToUse": "Full-width brand CTA band before footer"
},
"marketing.newsletter.inline": {
"block": "NewsletterBlock",
"recipe": "section.newsletter",
"category": "marketing",
"primitives": [
"Input",
"Button",
"Paragraph"
],
"storyReference": "Blocks/Marketing/NewsletterBlock",
"whenToUse": "Email capture with inline input and submit"
},
"marketing.events.featured": {
"block": "EventsBlock",
"recipe": "section.events",
"category": "marketing",
"primitives": [
"Tag",
"Button",
"SectionHeader"
],
"storyReference": "Blocks/Marketing/EventsBlock",
"whenToUse": "Brand band after hero — split layout with carousel nav, format/date tags, and event title"
},
"marketing.services.catalog": {
"block": "ServicesBlock",
"recipe": "section.services",
"category": "marketing",
"primitives": [
"Tab",
"Card",
"Button",
"Image",
"SectionHeader"
],
"storyReference": "Blocks/Marketing/ServicesBlock",
"uxReference": "cortel.cloud",
"whenToUse": "Services/practices catalog — sticky title + category tabs, 3-card grid, show-more pagination, hover lift cards"
},
"marketing.solutions.showcase": {
"block": "SolutionsBlock",
"recipe": "section.solutions",
"category": "marketing",
"primitives": [
"Card",
"Button",
"Badge",
"SectionHeader"
],
"storyReference": "Blocks/Marketing/SolutionsBlock",
"uxReference": "cortel.cloud",
"whenToUse": "Case study showcase — muted band, 2-row mosaic grid (3 equal + 6/3/3), mobile scroll strip, inverse hover reveal with brand gradient cover"
},
"marketing.solutions.grid": {
"block": "SolutionsBlock",
"recipe": "section.solutions",
"category": "marketing",
"primitives": [
"Card",
"Button",
"Badge",
"SectionHeader"
],
"storyReference": "Blocks/Marketing/SolutionsBlock",
"uxReference": "cortel.cloud/importozameshhenie-vmware-podderzhka-i-obsluzhivanie-spacevm",
"whenToUse": "Case detail related projects — equal 3-col SolutionCard grid with category/client/date meta, no mosaic spans"
},
"marketing.solutions.catalog": {
"block": "SolutionsBlock",
"recipe": "section.solutions",
"category": "marketing",
"primitives": [
"Card",
"Link",
"SectionHeader"
],
"storyReference": "Blocks/Marketing/SolutionsBlock",
"uxReference": "cortel.cloud/solutions",
"whenToUse": "Solutions catalog page — hero muted panel (variant solutions) + equal 3-col bordered cards with icon, title, description, arrow CTA on hover"
},
"marketing.trust.security": {
"block": "TrustBlock",
"recipe": "section.trust",
"category": "marketing",
"primitives": [
"Card",
"Link",
"SectionHeader"
],
"storyReference": "Blocks/Marketing/TrustBlock",
"uxReference": "cortel.cloud",
"whenToUse": "Reliability band — featured brand pillar + 3 white cards, gradient divider, sidebar + 3-col standards link grid"
},
"marketing.support.always-on": {
"block": "SupportBlock",
"recipe": "section.support",
"category": "marketing",
"primitives": [
"Card",
"Link",
"SectionHeader"
],
"storyReference": "Blocks/Marketing/SupportBlock",
"uxReference": "cortel.cloud",
"whenToUse": "Support band — split header, image stat cards (featured + 2 side), contact channel rows; mobile stacked stats hero"
},
"marketing.showcase.panel": {
"block": "ShowcasePanelBlock",
"recipe": "section.showcase-panel",
"category": "marketing",
"primitives": [
"Accordion",
"Button",
"SectionHeader",
"Image"
],
"storyReference": "Blocks/Marketing/ShowcasePanelBlock",
"uxReference": "cortel.cloud",
"whenToUse": "Interactive product panel — flex accordion cards on the left (expand/push in fixed frame), crossfade UI preview on the right; mobile inline preview per panel"
},
"marketing.blog.slider": {
"block": "BlogBlock",
"recipe": "section.blog",
"category": "marketing",
"primitives": [
"Card",
"Link",
"SectionHeader",
"Image"
],
"storyReference": "Blocks/Marketing/BlogBlock",
"uxReference": "cortel.cloud",
"whenToUse": "Blog band — split header with view-all + prev/next, horizontal card slider with image, excerpt fade, date pill and arrow link; mobile edge-bleed scroll"
},
"marketing.partners.marquee": {
"block": "PartnersBlock",
"recipe": "section.partners",
"category": "marketing",
"primitives": [
"Image",
"Link"
],
"storyReference": "Blocks/Marketing/PartnersBlock",
"uxReference": "cortel.cloud",
"whenToUse": "Strategic partners band — centered title, dual infinite marquee rows (opposite directions), white logo tiles with grayscale-to-color hover, edge gradient fades"
},
"marketing.contact.hero": {
"block": "ContactHeroBlock",
"recipe": "section.contact-hero",
"category": "marketing",
"primitives": [
"Button",
"Checkbox",
"Input"
],
"storyReference": "Blocks/Marketing/ContactHeroBlock",
"uxReference": "cortel.cloud",
"whenToUse": "Brand contact hero — parallax background, split title + glass form (name, phone, company), white submit CTA, consent checkbox"
},
"marketing.why-us.grid": {
"block": "WhyUsBlock",
"recipe": "section.why-us",
"category": "marketing",
"primitives": [
"Card",
"SectionHeader"
],
"storyReference": "Blocks/Marketing/WhyUsBlock",
"uxReference": "cortel.cloud/importozameshhenie-vmware",
"whenToUse": "Credibility grid — title with break, row1 (2 bordered cards + 2fr featured media), row2 (3 cards + mobile featured), muted-to-white section bg"
},
"marketing.choose-us.mosaic": {
"block": "ChooseUsBlock",
"recipe": "section.choose-us",
"category": "marketing",
"primitives": [
"Card",
"SectionHeader"
],
"storyReference": "Blocks/Marketing/ChooseUsBlock",
"uxReference": "cortel.cloud/company",
"whenToUse": "Company credibility mosaic — title with brand accent, 5-card wrap (2 wide + 3 narrow) + featured support panel on muted bg"
},
"marketing.process.timeline": {
"block": "ProcessBlock",
"recipe": "section.process",
"category": "marketing",
"primitives": [
"Card",
"SectionHeader"
],
"storyReference": "Blocks/Marketing/ProcessBlock",
"uxReference": "cortel.cloud/importozameshhenie-vmware",
"whenToUse": "Process timeline — numbered steps with dot markers, bordered cards, vertical mobile / horizontal desktop with gradient track"
},
"marketing.footer.minimal": {
"block": "FooterBlock",
"recipe": "section.footer",
"category": "marketing",
"primitives": [
"Link",
"Paragraph",
"Divider"
],
"storyReference": "Blocks/Marketing/FooterBlock",
"uxReference": "shadcn:footer-01",
"whenToUse": "Site footer with link columns, social links, and copyright"
},
"marketing.footer.enterprise": {
"block": "FooterBlock",
"recipe": "section.footer",
"category": "marketing",
"primitives": [
"Link",
"Paragraph"
],
"storyReference": "Blocks/Marketing/FooterBlock",
"uxReference": "cortel.cloud",
"whenToUse": "Brand footer after contact hero — gradient divider, logo column, 3-col nav/contacts/legal grid, back-to-top"
},
"marketing.auth.login": {
"block": "LoginBlock",
"recipe": "section.auth.login",
"category": "marketing",
"primitives": [
"Input",
"Button",
"Checkbox",
"Link",
"Alert"
],
"storyReference": "Blocks/Marketing/LoginBlock",
"uxReference": "console.cortel.cloud",
"whenToUse": "Auth login — Cortel console split-screen: brand decor panel + white form panel, login/password, remember+forgot row, submit, registration hint, legal footer links"
},
"marketing.case-studies.band": {
"block": "CaseStudiesBlock",
"recipe": "section.case-studies",
"category": "marketing",
"primitives": ["Card", "SectionHeader", "Button"],
"storyReference": "Blocks/Marketing/CaseStudiesBlock",
"whenToUse": "Case studies carousel/grid band — metric cards with client stories, optional view-all"
},
"marketing.case-detail.intro": {
"block": "CaseStudyIntroBlock",
"recipe": "section.case-intro",
"category": "marketing",
"primitives": ["Paragraph"],
"storyReference": "Blocks/Marketing/CaseStudyIntroBlock",
"whenToUse": "Case study intro — lead prose + brand highlight metric pairs"
},
"marketing.case-detail.inline-stats": {
"block": "CaseStudyInlineStatsBlock",
"recipe": "section.case-article",
"category": "marketing",
"primitives": ["Card"],
"storyReference": "Blocks/Marketing/CaseStudyInlineStatsBlock",
"whenToUse": "Case study business results — gray stat cards in article column"
},
"marketing.case-detail.implemented": {
"block": "CaseStudyImplementedBlock",
"recipe": "section.case-article",
"category": "marketing",
"primitives": ["Paragraph", "List"],
"storyReference": "Blocks/Marketing/CaseStudyImplementedBlock",
"whenToUse": "Case study delivered scope — intro + bullet list of implemented items"
},
"marketing.case-detail.sections": {
"block": "CaseStudySectionsBlock",
"recipe": "section.case-sections",
"category": "marketing",
"primitives": ["Paragraph", "List"],
"storyReference": "Blocks/Marketing/CaseStudySectionsBlock",
"whenToUse": "Case study narrative — titled sections with prose, bullets, and quotes"
},
"marketing.case-detail.anchor-nav": {
"block": "CaseStudyAnchorNav",
"recipe": "section.case-article",
"category": "marketing",
"primitives": ["Link"],
"storyReference": "Blocks/Marketing/CaseStudyAnchorNav",
"whenToUse": "Case study sticky anchor nav — scroll-spy section links in article split"
},
"marketing.case-detail.contact": {
"block": "CaseStudyContactBlock",
"recipe": "section.case-contact",
"category": "marketing",
"primitives": ["Input", "Button", "Textarea"],
"storyReference": "Blocks/Marketing/CaseStudyContactBlock",
"whenToUse": "Case study contact CTA — split copy + form on surface band"
},
"marketing.app-shell": {
"block": "AppShellBlock",
"recipe": "section.app-shell",
"category": "marketing",
"primitives": [],
"storyReference": "Blocks/Marketing/AppShellBlock",
"whenToUse": "Dashboard app shell — fixed sidebar nav + top bar (context label, user) + scrollable main; mobile horizontal nav pills"
},
"marketing.admin.content-list": {
"block": "AdminContentListBlock",
"recipe": "section.app-shell",
"category": "marketing",
"primitives": ["Input", "Button", "Table", "Chip"],
"storyReference": "Screens/AICADS PRO Admin",
"whenToUse": "Admin content index — searchable table of case studies or events with create/edit/delete actions"
},
"marketing.admin.content-editor": {
"block": "AdminContentEditorBlock",
"recipe": "section.app-shell",
"category": "marketing",
"primitives": ["Input", "Textarea", "Select", "Button"],
"storyReference": "Screens/AICADS PRO Admin",
"whenToUse": "Shared schema editor — anchor-nav sections for case study or event drafts"
},
"marketing.admin.users": {
"block": "AdminUsersWorkspaceBlock",
"recipe": "section.app-shell",
"category": "marketing",
"primitives": ["Table", "Modal", "Input", "Select", "Button", "Toast"],
"storyReference": "Screens/AICADS PRO Admin",
"whenToUse": "Admin user management — generate/change/send passwords, add users (front-only mock)"
},
"marketing.admin.partners": {
"block": "AdminPartnersWorkspaceBlock",
"recipe": "section.app-shell",
"category": "marketing",
"primitives": ["FileUpload", "Input", "Button", "Toast"],
"storyReference": "Screens/AICADS PRO Admin",
"whenToUse": "Partner asset grid — upload logo, name, link; front-only CRUD"
}
},
"pageTemplates": {
"marketing.landing.default": {
"description": "Standard SaaS landing page section order",
"sections": [
"marketing.hero.centered",
"marketing.features.grid",
"marketing.pricing.three-tier",
"marketing.cta.banner",
"marketing.footer.minimal"
],
"component": "LandingPageTemplate"
},
"marketing.landing.saas": {
"description": "Full SaaS landing with navbar, social proof, FAQ, and newsletter",
"sections": [
"marketing.navbar.sticky",
"marketing.hero.split",
"marketing.logos.cloud",
"marketing.stats.band",
"marketing.features.grid",
"marketing.steps.three",
"marketing.pricing.three-tier",
"marketing.testimonials.grid",
"marketing.faq.accordion",
"marketing.cta.band",
"marketing.newsletter.inline",
"marketing.footer.minimal"
],
"component": "LandingPageTemplate"
},
"marketing.landing.enterprise": {
"description": "Enterprise AICADS showcase landing — overlay navbar, brand hero, events, features, CTA, footer",
"sections": [
"marketing.navbar.enterprise",
"marketing.hero.enterprise",
"marketing.events.featured",
"marketing.solutions.showcase",
"marketing.solutions.catalog",
"marketing.services.catalog",
"marketing.support.always-on",
"marketing.choose-us.mosaic",
"marketing.trust.security",
"marketing.showcase.panel",
"marketing.partners.marquee",
"marketing.blog.slider",
"marketing.features.grid",
"marketing.cta.band",
"marketing.why-us.grid",
"marketing.process.timeline",
"marketing.faq.enterprise",
"marketing.contact.hero",
"marketing.footer.enterprise"
],
"component": "LandingPageTemplate",
"fixtureReference": "aicadsProNavbarFixture",
"notes": "Use LandingPageTemplate with navbar.overlay=true; hero.appearance auto-coerces to brand when overlay is set."
},
"marketing.admin.default": {
"description": "AICADS PRO admin console — case studies/events editor, users, partner assets",
"sections": [
"marketing.app-shell",
"marketing.admin.content-list",
"marketing.admin.content-editor",
"marketing.admin.users",
"marketing.admin.partners"
],
"component": "AdminPageTemplate",
"fixtureReference": "aicadsProAdminArgs",
"notes": "Storybook: Screens/AICADS PRO Admin. Front-only local state; shared schema editor for cases and events; password modals + partner logo CRUD. No API or routing."
},
"marketing.auth.login.default": {
"description": "AICADS PRO login — Cortel console split-screen, brand decor left + white form right",
"sections": [
"marketing.auth.login"
],
"component": "LoginPageTemplate",
"fixtureReference": "aicadsProLoginArgs",
"notes": "Storybook: Screens/AICADS PRO Login. Split 50/50 desktop; login + password, remember/forgot row, registration hint, legal footer."
},
"marketing.case-detail.default": {
"description": "AICADS PRO case detail — Cortel long-read with anchor nav and landing closing band",
"sections": [
"marketing.hero.page",
"marketing.case-detail.intro",
"marketing.case-detail.anchor-nav",
"marketing.case-detail.inline-stats",
"marketing.case-detail.implemented",
"marketing.case-detail.sections",
"marketing.solutions.grid",
"marketing.contact.hero",
"marketing.footer.enterprise"
],
"component": "CaseDetailPageTemplate",
"fixtureReference": "aicadsProCaseDetailArgs",
"notes": "Storybook: Screens/AICADS PRO Case Detail. Photo-hero above-fold + overlay navbar, white intro with brand highlight metrics, sticky anchor nav + split body, related projects grid, BrandPhotoHeroSection closing with contact + footer."
}
}
}