Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/site-map.md
Original file line numberDiff line numberDiff line change
Expand Up@@ -1148,6 +1148,7 @@ This file is generated by `npm run docs:update` (or `npm run sitemap:update` dir

- `/mockups/accessible-table-browser-fixture` - Route discovered from app directory Source: `src/app/mockups/accessible-table-browser-fixture/page.tsx`.
- `/mockups/also-matches-accents` - Route discovered from app directory Source: `src/app/mockups/also-matches-accents/page.tsx`.
- `/mockups/answer-chat-redesign` - Route discovered from app directory Source: `src/app/mockups/answer-chat-redesign/page.tsx`.
- `/mockups/answer-evidence-popups` - Route discovered from app directory Source: `src/app/mockups/answer-evidence-popups/page.tsx`.
- `/mockups/answer-home-proposal` - Route discovered from app directory Source: `src/app/mockups/answer-home-proposal/page.tsx`.
- `/mockups/calculators-bedside-sheet` - Route discovered from app directory Source: `src/app/mockups/calculators-bedside-sheet/page.tsx`.
Expand Down
12 changes: 12 additions & 0 deletions src/app/mockups/answer-chat-redesign/page.tsx
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
import type { Metadata } from "next";

import { AnswerChatRedesignMockups } from "@/components/answer-chat-redesign-mockups";

export const metadata: Metadata = {
title: "Answer chat redesign mockups - Clinical KB",
description: "Three ChatGPT-style directions for the Answer result, with distinct citation treatments.",
};

export default function AnswerChatRedesignMockupRoute() {
return <AnswerChatRedesignMockups />;
}
6 changes: 6 additions & 0 deletions src/app/mockups/mockups-layout-client.tsx
Original file line numberDiff line numberDiff line change
Expand Up@@ -59,6 +59,10 @@ export function MockupsLayoutClient({ children }: { children: ReactNode }) {
// sit on top of a study about results-card identity.
const isAlsoMatchesAccentMockup = pathname === "/mockups/also-matches-accents";
const isAnswerHomeProposalMockup = pathname === "/mockups/answer-home-proposal";
// Draws its own Answer chrome, thread, citations and composer inside every
// device frame. Shared mockup chrome would read as a second, real search bar
// over a study whose subject is the chat itself.
const isAnswerChatRedesignMockup = pathname === "/mockups/answer-chat-redesign";
// Draws its own sticky chrome + device frames for /privacy; shared shell would
// read as a second real header over the study.
const isPrivacyPageDirectionsMockup = pathname === "/mockups/privacy-page-directions";
Expand DownExpand Up@@ -131,6 +135,7 @@ export function MockupsLayoutClient({ children }: { children: ReactNode }) {
!isWarningLineMockup &&
!isAlsoMatchesAccentMockup &&
!isAnswerHomeProposalMockup &&
!isAnswerChatRedesignMockup &&
!isPrivacyPageDirectionsMockup &&
!isPrivacyLiveSignalPerfectedMockup &&
!isSearchLensMenuMockup &&
Expand All@@ -157,6 +162,7 @@ export function MockupsLayoutClient({ children }: { children: ReactNode }) {
!isWarningLineMockup &&
!isAlsoMatchesAccentMockup &&
!isAnswerHomeProposalMockup &&
!isAnswerChatRedesignMockup &&
!isPrivacyPageDirectionsMockup &&
!isPrivacyLiveSignalPerfectedMockup &&
!isSearchLensMenuMockup &&
Expand Down
Loading
Loading