You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add publication-related question prompts to the bottom of the **Biomodel Database Search** page (`/search`). These questions should appear after a horizontal line separator and link users to the AI chat to explore VCell publication data.
8
+
9
+
## Requested Questions
10
+
11
+
1.**"Are there VCell biomodels featured in Nature journal?"**
12
+
2.**"List all publications that feature VCell models of calcium."**
13
+
14
+
## Acceptance Criteria
15
+
16
+
-[ ] A new section titled "Publication Questions" appears at the bottom of the `/search` page
17
+
-[ ] The section is separated from the search results by a horizontal line
18
+
-[ ] Each question is displayed as a clickable button that navigates to `/chat`
19
+
-[ ] The section is visible on both desktop and mobile viewports
# feat: add publication questions section to search page
2
+
3
+
Closes #26
4
+
5
+
## Description
6
+
7
+
Adds a **"Publication Questions"** section to the bottom of the Biomodel Database Search page (`/search`), as requested in issue #26. The section appears below a horizontal line separator and provides two clickable question prompts that link to the AI chat page.
8
+
9
+
## Changes
10
+
11
+
**File:**`frontend/app/search/page.tsx`
12
+
13
+
- Added `BookOpen` icon import from `lucide-react`
14
+
- Added a new "Publication Questions" section at the bottom of the page with:
15
+
- A horizontal line separator (`border-t`)
16
+
- Section heading with a book icon
17
+
- Descriptive subtitle
18
+
- Two question buttons linking to `/chat`:
19
+
1._"Are there VCell biomodels featured in Nature journal?"_
20
+
2._"List all publications that feature VCell models of calcium."_
21
+
- Buttons are responsive: side-by-side on desktop, stacked on mobile (`flex-col sm:flex-row`)
22
+
23
+
## Screenshots
24
+
25
+
### Search page with Publication Questions section
26
+
The new section appears below the search filters card, separated by a horizontal line. Both questions are displayed as outlined buttons with search icons.
27
+
28
+
## Testing
29
+
30
+
- Verified the section renders correctly on desktop (1440×900)
31
+
- Both buttons are visible and clickable
32
+
- Links navigate to `/chat` as expected
33
+
- Layout stacks vertically on mobile viewports
34
+
- No visual regression to existing search functionality
0 commit comments