@@ -2,15 +2,60 @@ import Link from 'next/link';
22
33export default function HomePage ( ) {
44 return (
5- < div className = "flex flex-col justify-center text-center flex-1" >
6- < h1 className = "text-2xl font-bold mb-4" > Hello World</ h1 >
7- < p >
8- You can open{ ' ' }
9- < Link href = "/docs" className = "font-medium underline" >
10- /docs
11- </ Link > { ' ' }
12- and see the documentation.
13- </ p >
14- </ div >
5+ < main className = "flex flex-col items-center justify-center min-h-screen p-8" >
6+ < div className = "max-w-4xl mx-auto text-center space-y-8" >
7+ < div className = "space-y-4" >
8+ < h1 className = "text-5xl font-bold tracking-tight" > llms.py</ h1 >
9+ < p className = "text-xl text-muted-foreground max-w-2xl mx-auto" >
10+ Lightweight OpenAI compatible CLI and server gateway for multiple LLMs
11+ </ p >
12+ </ div >
13+
14+ < div className = "flex flex-col sm:flex-row gap-4 justify-center items-center" >
15+ < Link
16+ href = "/docs"
17+ className = "px-6 py-3 rounded-lg bg-primary text-primary-foreground font-semibold hover:bg-primary/90 transition-colors"
18+ >
19+ Get Started
20+ </ Link >
21+ < a
22+ href = "https://github.com/ServiceStack/llms"
23+ target = "_blank"
24+ rel = "noopener noreferrer"
25+ className = "px-6 py-3 rounded-lg border border-input bg-background hover:bg-accent hover:text-accent-foreground transition-colors font-semibold"
26+ >
27+ View on GitHub
28+ </ a >
29+ </ div >
30+
31+ < div className = "grid md:grid-cols-3 gap-6 mt-16 text-left" >
32+ < div className = "p-6 rounded-lg border bg-card" >
33+ < h3 className = "font-semibold text-lg mb-2" > 🪶 Ultra-Lightweight</ h3 >
34+ < p className = "text-sm text-muted-foreground" >
35+ Single file with just one aiohttp dependency. Perfect for ComfyUI and minimal environments.
36+ </ p >
37+ </ div >
38+ < div className = "p-6 rounded-lg border bg-card" >
39+ < h3 className = "font-semibold text-lg mb-2" > 🌐 Multi-Provider</ h3 >
40+ < p className = "text-sm text-muted-foreground" >
41+ Access 160+ models from OpenAI, Anthropic, Google, Grok, Groq, Ollama, and more.
42+ </ p >
43+ </ div >
44+ < div className = "p-6 rounded-lg border bg-card" >
45+ < h3 className = "font-semibold text-lg mb-2" > 💻 ChatGPT-like UI</ h3 >
46+ < p className = "text-sm text-muted-foreground" >
47+ Fast, privacy-focused web interface with dark mode and built-in analytics.
48+ </ p >
49+ </ div >
50+ </ div >
51+
52+ < div className = "mt-12 p-6 rounded-lg bg-muted" >
53+ < h3 className = "font-semibold mb-4" > Quick Install</ h3 >
54+ < code className = "text-sm bg-background px-4 py-2 rounded border block" >
55+ pip install llms-py
56+ </ code >
57+ </ div >
58+ </ div >
59+ </ main >
1560 ) ;
1661}
0 commit comments