From ac60bc75b2f68189401f495efdbc3dae64e87282 Mon Sep 17 00:00:00 2001 From: kushvinth Date: Thu, 5 Mar 2026 01:59:13 +0530 Subject: [PATCH] feat: add publication questions section to search page --- frontend/app/search/page.tsx | 37 +++++++++++++++++++++++++++++++++++- 1 file changed, 36 insertions(+), 1 deletion(-) diff --git a/frontend/app/search/page.tsx b/frontend/app/search/page.tsx index c602b96..10138e7 100644 --- a/frontend/app/search/page.tsx +++ b/frontend/app/search/page.tsx @@ -1,7 +1,7 @@ "use client"; import { useState } from "react"; -import { Search, Filter, ChevronsUpDown } from "lucide-react"; +import { Search, Filter, ChevronsUpDown, BookOpen } from "lucide-react"; import { Button } from "@/components/ui/button"; import { Input } from "@/components/ui/input"; import { Label } from "@/components/ui/label"; @@ -453,6 +453,41 @@ export default function BiomodelSearchPage() { )} + + {/* Publications Questions Section */} +
+

+ + Publication Questions +

+

+ Explore VCell biomodel publications using the AI assistant. +

+
+ + + + + + +
+
);