Skip to content

Commit 8b99809

Browse files
committed
update
1 parent c2e0140 commit 8b99809

File tree

1 file changed

+22
-17
lines changed

1 file changed

+22
-17
lines changed

app/(dashboard)/page.tsx

Lines changed: 22 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -126,23 +126,6 @@ export default function HomePage() {
126126
</div>
127127
</section>
128128

129-
{/* Terminal Prompt */}
130-
<section className="py-12 bg-white w-full">
131-
<div className="max-w-6xl mx-auto px-8 sm:px-12 lg:px-16">
132-
<div className="lg:grid lg:grid-cols-12 lg:gap-4">
133-
<div className="sm:text-center md:max-w-2xl md:mx-auto lg:col-span-7 lg:text-left">
134-
<h2 className="text-xl font-bold text-gray-700 tracking-tight sm:text-3xl mb-6">
135-
Try It Yourself:
136-
<span className="block text-orange-500">The Magic Prompt</span>
137-
</h2>
138-
</div>
139-
<div className="mt-12 relative sm:max-w-lg sm:mx-auto lg:mt-0 lg:max-w-none lg:mx-0 lg:col-span-5 lg:flex lg:items-center">
140-
<Terminal_Prompt />
141-
</div>
142-
</div>
143-
</div>
144-
</section>
145-
146129
{/* Pip Install Section */}
147130
<section className="py-12 bg-gray-50">
148131
<div className="max-w-6xl mx-auto px-8 sm:px-12 lg:px-16">
@@ -182,6 +165,28 @@ export default function HomePage() {
182165
</div>
183166
</section>
184167

168+
{/* Terminal Prompt (after Pip Install) */}
169+
<section className="py-12 bg-white w-full">
170+
<div className="max-w-6xl mx-auto px-8 sm:px-12 lg:px-16">
171+
<div className="lg:grid lg:grid-cols-12 lg:gap-4 lg:items-start">
172+
<div className="lg:col-span-7 text-left sm:text-center lg:text-left">
173+
<h2 className="text-xl font-bold text-gray-700 tracking-tight sm:text-3xl">
174+
Try It Yourself: <span className="text-orange-500">The Magic Prompt</span>
175+
</h2>
176+
<p className="text-base text-gray-600 mt-4">
177+
Use this prompt to sample multiple responses with explicit probabilities from your model.
178+
Copy it into your provider’s playground or API call, then replace the <code className="font-mono">&lt;user_query&gt;</code> with your task.
179+
</p>
180+
</div>
181+
<div className="mt-8 lg:mt-0 lg:col-span-5 lg:mx-0 w-full">
182+
<div className="w-full">
183+
<Terminal_Prompt />
184+
</div>
185+
</div>
186+
</div>
187+
</div>
188+
</section>
189+
185190
{/* BibTeX Citation */}
186191
<section className="py-12 bg-white">
187192
<div className="max-w-6xl mx-auto px-8 sm:px-12 lg:px-16">

0 commit comments

Comments
 (0)