Skip to content

Commit f5717e2

Browse files
committed
Add AI/LLM Ready feature to the website page
- Introduced a new feature highlighting AI and LLM readiness, including MCP tools, rules, and skills for enhanced AI-assisted workflows. - Updated the comparison rows to reflect the new feature and its capabilities. - Enhanced the UI to showcase the LLM ready status with relevant icons and descriptions, improving user awareness of AI integration. These changes enhance the website's presentation of DataQueue's capabilities in AI-assisted development.
1 parent 705a24a commit f5717e2

1 file changed

Lines changed: 29 additions & 1 deletion

File tree

apps/website/app/page.tsx

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ import {
2020
X,
2121
Minus,
2222
CalendarClock,
23+
Sparkles,
2324
} from 'lucide-react';
2425
import { Button } from '@/components/ui/button';
2526
import { Card, CardContent } from '@/components/ui/card';
@@ -149,6 +150,13 @@ const comparisonRows: ComparisonRow[] = [
149150
bullmq: 'Third-party',
150151
trigger: 'Built-in',
151152
},
153+
{
154+
feature: 'AI / LLM Ready',
155+
dataqueue: 'MCP, rules, skills',
156+
pgboss: false,
157+
bullmq: false,
158+
trigger: 'MCP, rules, skills',
159+
},
152160
{
153161
feature: 'Wait / Pause Jobs',
154162
dataqueue: 'waitFor, waitUntil, tokens',
@@ -336,6 +344,12 @@ queue.process<EmailJob>('email', async (job) => {
336344
description:
337345
'Add a complete admin dashboard to your Next.js app with a single route file. View, inspect, and manage jobs without building custom UI.',
338346
},
347+
{
348+
icon: Sparkles,
349+
title: 'LLM Ready',
350+
description:
351+
'Built for AI-assisted development: MCP tools, Cursor rules, and skills so assistants can reason about your queue, run migrations, and use the API correctly.',
352+
},
339353
];
340354

341355
const benefits = [
@@ -367,6 +381,11 @@ queue.process<EmailJob>('email', async (job) => {
367381
description:
368382
'Easy to integrate into existing Node.js and TypeScript projects',
369383
},
384+
{
385+
title: 'AI & LLM Ready',
386+
description:
387+
'MCP, rules, and skills included so Cursor and other AI tools can work with DataQueue out of the box',
388+
},
370389
];
371390

372391
return (
@@ -445,13 +464,22 @@ queue.process<EmailJob>('email', async (job) => {
445464
</span>{' '}
446465
with ease
447466
</h1>
448-
<p className="mb-8 text-xl text-muted-foreground sm:text-2xl">
467+
<p className="mb-4 text-xl text-muted-foreground sm:text-2xl">
449468
A lightweight job queue backed by{' '}
450469
<span className="font-semibold text-foreground">PostgreSQL</span>{' '}
451470
or <span className="font-semibold text-foreground">Redis</span>.
452471
Use your existing database — no extra infra needed.{' '}
453472
<span className="highlight-marker">Open Source.</span>
454473
</p>
474+
<p className="mb-8 flex flex-wrap items-center justify-center gap-2 text-base text-muted-foreground sm:text-lg">
475+
<span className="inline-flex items-center gap-1.5 rounded-full border border-border/60 bg-card/50 px-3 py-1 font-medium text-foreground/90">
476+
<Sparkles className="h-4 w-4 text-purple-500" />
477+
LLM ready
478+
</span>
479+
<span className="text-muted-foreground/80">
480+
— MCP, rules & skills for Cursor and AI-assisted workflows
481+
</span>
482+
</p>
455483
<div className="flex flex-col items-center justify-center gap-4 sm:flex-row">
456484
<a
457485
href="https://docs.dataqueue.dev/"

0 commit comments

Comments
 (0)