Skip to content

Commit fad190c

Browse files
committed
Update page.tsx
1 parent 7fd8911 commit fad190c

File tree

1 file changed

+56
-2
lines changed

1 file changed

+56
-2
lines changed

app/(home)/page.tsx

Lines changed: 56 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ export default function HomePage() {
6262
</h1>
6363

6464
<p className="text-xl md:text-2xl text-slate-300 max-w-4xl mx-auto leading-relaxed font-medium">
65-
These React + .NET Templates are ideal for <span className="text-cyan-400 font-bold">Vibe Coded UIs</span>
65+
Ultimate .NET React Templates for <span className="text-cyan-400 font-bold">Vibe Coded UIs</span>
6666
<br className="hidden md:block" />
67-
and <span className="text-sky-400 font-bold">fast and scalable .NET backends</span>.
67+
running on <span className="text-sky-400 font-bold">robust and scalable .NET backends</span>.
6868
</p>
6969

7070
<div className="flex flex-wrap justify-center gap-6 pt-8">
@@ -241,12 +241,66 @@ export default function HomePage() {
241241
setDiagramMode={setDiagramMode}
242242
/>
243243
</div>
244+
<PricingCallout />
244245
</div>
245246
</div>
246247
</main>
247248
);
248249
}
249250

251+
function PricingCallout() {
252+
return (
253+
<div className="relative max-w-4xl mx-auto mt-60 rounded-3xl overflow-hidden bg-slate-950 border border-white/10 shadow-2xl">
254+
{/* Background Effects */}
255+
<div className="absolute inset-0 opacity-20 pointer-events-none">
256+
<svg className="h-full w-full" aria-hidden="true">
257+
<defs>
258+
<pattern id="pricing-grid" width="40" height="40" patternUnits="userSpaceOnUse">
259+
<path d="M0 40L40 0H20L0 20M40 40V20L20 40" stroke="#0ea5e9" strokeWidth="1" fill="none" opacity="0.1" />
260+
</pattern>
261+
</defs>
262+
<rect width="100%" height="100%" fill="url(#pricing-grid)" />
263+
</svg>
264+
</div>
265+
266+
<div className="absolute top-0 left-1/4 h-64 w-64 rounded-full bg-blue-600/20 blur-[80px] pointer-events-none"></div>
267+
<div className="absolute bottom-0 right-1/4 h-64 w-64 rounded-full bg-cyan-500/10 blur-[80px] pointer-events-none"></div>
268+
269+
<div className="relative z-10 p-10 text-center">
270+
<h3 className="text-3xl md:text-5xl font-bold text-white mb-8 tracking-tight">
271+
Simple, Transparent Pricing
272+
</h3>
273+
274+
<div className="py-12">
275+
<Link
276+
href="https://servicestack.net/pricing"
277+
className="inline-flex items-center justify-center px-10 py-4 text-lg font-bold text-slate-900 transition-all duration-200 bg-cyan-400 rounded-full hover:bg-cyan-300 hover:scale-105 hover:shadow-[0_0_20px_rgba(34,211,238,0.6)] focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-cyan-400"
278+
>
279+
View Perpetual Pricing
280+
<svg className="w-5 h-5 ml-2 -mr-1" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M17 8l4 4m0 0l-4 4m4-4H3"></path></svg>
281+
</Link>
282+
</div>
283+
284+
<div className="flex flex-col md:flex-row gap-8 md:gap-12 items-center justify-center max-w-3xl mx-auto">
285+
<Link href="https://servicestack.net/free" className="group flex-1 space-y-2 p-4 rounded-xl hover:bg-white/5 transition-colors">
286+
<div className="text-xl font-medium text-slate-400 group-hover:text-cyan-400 transition-colors">Individuals & OSS</div>
287+
<div className="text-4xl font-bold text-white tracking-tight">Free</div>
288+
<p className="text-sm text-slate-500 group-hover:text-slate-300 transition-colors">Forever free for personal & open source</p>
289+
</Link>
290+
291+
<div className="hidden md:block w-px h-16 bg-gradient-to-b from-transparent via-slate-700 to-transparent" />
292+
293+
<Link href="https://servicestack.net/trial" className="group flex-1 space-y-2 p-4 rounded-xl hover:bg-white/5 transition-colors">
294+
<div className="text-xl font-medium text-slate-400 group-hover:text-cyan-400 transition-colors">Commercial</div>
295+
<div className="text-4xl font-bold text-white tracking-tight">30 Day</div>
296+
<p className="text-sm text-slate-500 group-hover:text-slate-300 transition-colors">Risk-free trial for businesses</p>
297+
</Link>
298+
</div>
299+
</div>
300+
</div>
301+
);
302+
}
303+
250304
function TemplateSection({ title, description, href, screenshot, diagram, features, command, githubTemplate, reversed = false, diagramMode, setDiagramMode }: any) {
251305
const currentDiagram = diagram.replace('-prod.svg', diagramMode === 'Production' ? '-prod.svg' : '-dev.svg');
252306

0 commit comments

Comments
 (0)