Skip to content

Commit ac60bc7

Browse files
committed
feat: add publication questions section to search page
1 parent 5d95ca1 commit ac60bc7

1 file changed

Lines changed: 36 additions & 1 deletion

File tree

frontend/app/search/page.tsx

Lines changed: 36 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"use client";
22

33
import { useState } from "react";
4-
import { Search, Filter, ChevronsUpDown } from "lucide-react";
4+
import { Search, Filter, ChevronsUpDown, BookOpen } from "lucide-react";
55
import { Button } from "@/components/ui/button";
66
import { Input } from "@/components/ui/input";
77
import { Label } from "@/components/ui/label";
@@ -453,6 +453,41 @@ export default function BiomodelSearchPage() {
453453
</div>
454454
</div>
455455
)}
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>
456491
</div>
457492
</div>
458493
);

0 commit comments

Comments
 (0)