-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpage.tsx
More file actions
189 lines (173 loc) · 7.54 KB
/
page.tsx
File metadata and controls
189 lines (173 loc) · 7.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
"use client";
import {
ArrowRight,
MessageSquare,
Wrench,
Shield,
LogIn,
UserPlus,
} from "lucide-react";
import { Button } from "@/components/ui/button";
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
import Link from "next/link";
import Image from "next/image";
export default function LandingPage() {
return (
<div className="min-h-screen flex flex-col bg-white">
{/* Header with Navigation */}
<header className="border-b border-slate-200 bg-white/80 backdrop-blur-sm sticky top-0 z-50">
<div className="container mx-auto px-4 py-4 max-w-6xl">
<div className="flex items-center justify-between">
<div className="flex items-center gap-2">
<Image
src="/VCellLogo.png"
alt="VCell Logo"
width={100}
height={100}
className="rounded-lg"
/>
<span className="text-xl font-semibold text-slate-900">
AI Explorer
</span>
</div>
<div className="flex items-center gap-3">
<Button variant="outline" size="sm" asChild>
<Link href="/signin" className="flex items-center gap-2">
<LogIn className="h-4 w-4" />
Sign In
</Link>
</Button>
<Button size="sm" asChild>
<Link href="/signup" className="flex items-center gap-2">
<UserPlus className="h-4 w-4" />
Sign Up
</Link>
</Button>
</div>
</div>
</div>
</header>
<main className="flex-1 flex flex-col items-center justify-center">
<div className="container mx-auto px-4 max-w-6xl flex flex-col items-center justify-center">
{/* Hero Section */}
<div className="text-center mb-16">
<div className="flex flex-col lg:flex-row items-center justify-center gap-6 mb-6">
<Image
src="/VCellLogo.png"
alt="VCell Logo"
width={318}
height={120}
className="rounded-lg"
/>
<div className="text-center lg:text-left">
<h1 className="text-5xl md:text-6xl lg:text-7xl font-bold text-slate-900 leading-tight">
Explore VCell Models
<br />
<span className="text-blue-600">with AI</span>
</h1>
<p className="mt-4 text-lg md:text-xl text-slate-600 max-w-2xl leading-relaxed">
Search, analyze, and understand biological models more easily
through a cleaner and more user-friendly interface.
</p>
</div>
</div>
<div className="flex flex-col sm:flex-row gap-4 justify-center items-center">
<Link href="/chat">
<Button
size="lg"
className="bg-blue-600 hover:bg-blue-700 text-white px-8 py-4 text-lg font-semibold rounded-lg shadow-lg hover:shadow-xl transition-all duration-200"
>
Start Exploring
<ArrowRight className="ml-2 h-5 w-5" />
</Button>
</Link>
<Link href="/signup">
<Button
variant="outline"
size="lg"
className="border-2 border-blue-600 text-blue-600 hover:bg-blue-50 px-8 py-4 text-lg font-semibold rounded-lg transition-all duration-200"
>
Join Now
</Button>
</Link>
</div>
</div>
{/* Features Section */}
<div className="grid grid-cols-1 md:grid-cols-3 gap-6 mb-16 w-full">
<Card className="border-slate-200 shadow-lg hover:shadow-xl transition-shadow duration-200">
<CardHeader className="text-center pb-2">
<div className="w-14 h-14 bg-blue-100 rounded-full flex items-center justify-center mx-auto mb-2">
<MessageSquare className="h-8 w-8 text-blue-600" />
</div>
<CardTitle className="text-xl font-semibold text-slate-900">
AI-Powered Chatbot
</CardTitle>
</CardHeader>
<CardContent className="text-center">
<p className="text-slate-600 leading-relaxed">
Ask questions in natural language and get intelligent
responses. The chatbot can retrieve and analyze biomodels
using LLMs with tool calling.
</p>
</CardContent>
</Card>
<Card className="border-slate-200 shadow-lg hover:shadow-xl transition-shadow duration-200">
<CardHeader className="text-center pb-2">
<div className="w-14 h-14 bg-blue-100 rounded-full flex items-center justify-center mx-auto mb-2">
<Wrench className="h-8 w-8 text-blue-600" />
</div>
<CardTitle className="text-xl font-semibold text-slate-900">
Everything in One Place
</CardTitle>
</CardHeader>
<CardContent className="text-center">
<div className="space-y-2">
<p className="text-slate-600 leading-relaxed mb-2">
All essential tools in one platform
</p>
<div className="space-y-1 text-sm">
<div className="flex items-center justify-center gap-2">
<div className="w-2 h-2 bg-blue-500 rounded-full"></div>
<span className="text-slate-700">
Biomodel Database Search
</span>
</div>
<div className="flex items-center justify-center gap-2">
<div className="w-2 h-2 bg-blue-500 rounded-full"></div>
<span className="text-slate-700">
VCML and SBML File Retrieval
</span>
</div>
<div className="flex items-center justify-center gap-2">
<div className="w-2 h-2 bg-blue-500 rounded-full"></div>
<span className="text-slate-700">Biomodel Diagrams</span>
</div>
</div>
</div>
</CardContent>
</Card>
<Card className="border-slate-200 shadow-lg hover:shadow-xl transition-shadow duration-200">
<CardHeader className="text-center pb-2">
<div className="w-14 h-14 bg-blue-100 rounded-full flex items-center justify-center mx-auto mb-2">
<Shield className="h-8 w-8 text-blue-600" />
</div>
<CardTitle className="text-xl font-semibold text-slate-900">
Private Model Access
</CardTitle>
</CardHeader>
<CardContent className="text-center">
<p className="text-slate-600 leading-relaxed">
Access private and restricted biomodels with secure Auth0
authentication.
</p>
</CardContent>
</Card>
</div>
</div>
</main>
<footer className="text-center border-t border-slate-200 text-sm">
<p className="text-slate-500 my-4">VCell AI Model Explorer</p>
</footer>
</div>
);
}