@docubook/create 2.0.0-beta.3 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@docubook/create",
3
- "version": "2.0.0-beta.3",
3
+ "version": "2.0.0",
4
4
  "description": "CLI to create DocuBook projects",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -1,6 +1,6 @@
1
1
  import { buttonVariants } from "@/components/ui/button";
2
2
  import { page_routes } from "@/lib/routes-config";
3
- import { ArrowRightIcon, FileJson, GitCommitHorizontal, SquarePlay } from "lucide-react";
3
+ import { ArrowRightIcon, Terminal, AppWindow, FileText } from "lucide-react";
4
4
  import Link from "next/link";
5
5
  import { cn } from "@/lib/utils";
6
6
  import AnimatedShinyText from "@/components/ui/animated-shiny-text";
@@ -25,7 +25,7 @@ export default function Home() {
25
25
  )}
26
26
  >
27
27
  <AnimatedShinyText className="inline-flex items-center justify-center px-4 py-1 transition ease-out hover:text-neutral-100 hover:duration-300 hover:dark:text-neutral-200">
28
- <span>🚀 Release v2.0.0-beta.3</span>
28
+ <span>🚀 Release v2.0.0</span>
29
29
  <ArrowRightIcon className="ml-1 size-3 transition-transform duration-300 ease-in-out group-hover:translate-x-0.5" />
30
30
  </AnimatedShinyText>
31
31
  </div>
@@ -65,29 +65,29 @@ export default function Home() {
65
65
  <div className="grid grid-cols-1 md:grid-cols-3 gap-8 py-12">
66
66
  <Card className="px-2 py-6">
67
67
  <CardHeader className="flex flex-row justify-center items-center gap-3">
68
- <FileJson className="size-6 text-primary" />
69
- <CardTitle className="text-xl">docu.json</CardTitle>
68
+ <Terminal className="size-6 text-primary" />
69
+ <CardTitle className="text-xl">Advanced Code Blocks</CardTitle>
70
70
  </CardHeader>
71
71
  <CardContent>
72
- <p>Edit the docu.json file to change the content in the header, footer and sidebar.</p>
72
+ <p>Write amazing code blocks with syntax highlighting, line numbers, and line highlighting.</p>
73
73
  </CardContent>
74
74
  </Card>
75
75
  <Card className="px-2 py-6">
76
76
  <CardHeader className="flex flex-row justify-center items-center gap-3">
77
- <GitCommitHorizontal className="size-6 text-primary" />
78
- <CardTitle className="text-xl">CHANGELOG.md</CardTitle>
77
+ <AppWindow className="size-6 text-primary" />
78
+ <CardTitle className="text-xl">Custom Components</CardTitle>
79
79
  </CardHeader>
80
80
  <CardContent>
81
- <p>Manage changes to each version of your application in the CHANGELOG.md file.</p>
81
+ <p>Enhance your docs with custom components like Notes, Accordions, and Tabs.</p>
82
82
  </CardContent>
83
83
  </Card>
84
84
  <Card className="px-2 py-6">
85
85
  <CardHeader className="flex flex-row justify-center items-center gap-3">
86
- <SquarePlay className="size-6 text-primary" />
87
- <CardTitle className="text-xl">Docu Play</CardTitle>
86
+ <FileText className="size-6 text-primary" />
87
+ <CardTitle className="text-xl">Markdown Excellence</CardTitle>
88
88
  </CardHeader>
89
89
  <CardContent>
90
- <p>Easy to write interactive markdown content with a playground.</p>
90
+ <p>Full support for GFM including tables, lists, and images for rich documentation.</p>
91
91
  </CardContent>
92
92
  </Card>
93
93
  </div>
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "docubook",
3
- "version": "2.0.0-beta.3",
3
+ "version": "2.0.0",
4
4
  "private": true,
5
5
  "scripts": {
6
6
  "dev": "next dev",