|
1 | 1 | "use client"; |
2 | 2 |
|
3 | 3 | import { useState } from "react"; |
4 | | -import { Search, Filter, ChevronsUpDown } from "lucide-react"; |
| 4 | +import { Search, Filter, ChevronsUpDown, BookOpen } from "lucide-react"; |
5 | 5 | import { Button } from "@/components/ui/button"; |
6 | 6 | import { Input } from "@/components/ui/input"; |
7 | 7 | import { Label } from "@/components/ui/label"; |
@@ -453,6 +453,41 @@ export default function BiomodelSearchPage() { |
453 | 453 | </div> |
454 | 454 | </div> |
455 | 455 | )} |
| 456 | + |
| 457 | + {/* Publications Questions Section */} |
| 458 | + <div className="border-t border-slate-300 pt-8 mt-8"> |
| 459 | + <h2 className="text-xl font-semibold text-slate-900 mb-2 flex items-center gap-2"> |
| 460 | + <BookOpen className="h-5 w-5 text-blue-600" /> |
| 461 | + Publication Questions |
| 462 | + </h2> |
| 463 | + <p className="text-slate-600 text-sm mb-4"> |
| 464 | + Explore VCell biomodel publications using the AI assistant. |
| 465 | + </p> |
| 466 | + <div className="flex flex-col sm:flex-row gap-3"> |
| 467 | + <Link href="/chat" className="flex-1"> |
| 468 | + <Button |
| 469 | + variant="outline" |
| 470 | + className="w-full justify-start text-left h-auto py-3 px-4 border-slate-200 hover:border-blue-300 hover:bg-blue-50 transition-colors" |
| 471 | + > |
| 472 | + <Search className="h-4 w-4 mr-3 text-blue-600 flex-shrink-0" /> |
| 473 | + <span className="text-sm text-slate-700"> |
| 474 | + Are there VCell biomodels featured in Nature journal? |
| 475 | + </span> |
| 476 | + </Button> |
| 477 | + </Link> |
| 478 | + <Link href="/chat" className="flex-1"> |
| 479 | + <Button |
| 480 | + variant="outline" |
| 481 | + className="w-full justify-start text-left h-auto py-3 px-4 border-slate-200 hover:border-blue-300 hover:bg-blue-50 transition-colors" |
| 482 | + > |
| 483 | + <Search className="h-4 w-4 mr-3 text-blue-600 flex-shrink-0" /> |
| 484 | + <span className="text-sm text-slate-700"> |
| 485 | + List all publications that feature VCell models of calcium. |
| 486 | + </span> |
| 487 | + </Button> |
| 488 | + </Link> |
| 489 | + </div> |
| 490 | + </div> |
456 | 491 | </div> |
457 | 492 | </div> |
458 | 493 | ); |
|
0 commit comments