-
-
Notifications
You must be signed in to change notification settings - Fork 340
Expand file tree
/
Copy pathcli.tsx
More file actions
79 lines (77 loc) · 2.29 KB
/
cli.tsx
File metadata and controls
79 lines (77 loc) · 2.29 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
import { Bot, Layers, Puzzle, Rocket, Terminal } from 'lucide-react'
import { twMerge } from 'tailwind-merge'
import { cli } from './libraries'
const textStyles = 'text-indigo-600 dark:text-indigo-400'
export const cliProject = {
...cli,
featureHighlights: [
{
title: 'MCP Server',
icon: <Bot className={textStyles} />,
description: (
<div>
Connect your AI assistant to TanStack via the{' '}
<span className={twMerge('font-semibold', textStyles)}>
built-in MCP server
</span>
. Search docs, get integration file changes, and let AI agents help
scaffold and configure your projects.
</div>
),
},
{
title: 'Modular Integrations',
icon: <Puzzle className={textStyles} />,
description: (
<div>
Choose from a growing ecosystem of{' '}
<span className={twMerge('font-semibold', textStyles)}>
pre-built integrations
</span>{' '}
for authentication, databases, styling, deployment, and more.
</div>
),
},
{
title: 'Interactive Builder',
icon: <Layers className={textStyles} />,
description: (
<div>
Use the{' '}
<span className={twMerge('font-semibold', textStyles)}>
web-based Builder UI
</span>{' '}
to visually select your stack, preview generated files, and export
your configuration.
</div>
),
},
{
title: 'Zero to Production',
icon: <Terminal className={textStyles} />,
description: (
<div>
Go from{' '}
<span className={twMerge('font-semibold', textStyles)}>
zero to a fully configured project
</span>{' '}
in seconds with all the boilerplate, configuration, and best practices
built in.
</div>
),
},
{
title: 'Deploy Anywhere',
icon: <Rocket className={textStyles} />,
description: (
<div>
Built-in deployment integrations for{' '}
<span className={twMerge('font-semibold', textStyles)}>
Cloudflare, Netlify, AWS, and more
</span>
. Pre-configured with optimal settings for TanStack Start.
</div>
),
},
],
}