@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 +1 -1
- package/src/dist/app/page.tsx +11 -11
- package/src/dist/package.json +1 -1
package/package.json
CHANGED
package/src/dist/app/page.tsx
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { buttonVariants } from "@/components/ui/button";
|
|
2
2
|
import { page_routes } from "@/lib/routes-config";
|
|
3
|
-
import { ArrowRightIcon,
|
|
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
|
|
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
|
-
<
|
|
69
|
-
<CardTitle className="text-xl">
|
|
68
|
+
<Terminal className="size-6 text-primary" />
|
|
69
|
+
<CardTitle className="text-xl">Advanced Code Blocks</CardTitle>
|
|
70
70
|
</CardHeader>
|
|
71
71
|
<CardContent>
|
|
72
|
-
<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
|
-
<
|
|
78
|
-
<CardTitle className="text-xl">
|
|
77
|
+
<AppWindow className="size-6 text-primary" />
|
|
78
|
+
<CardTitle className="text-xl">Custom Components</CardTitle>
|
|
79
79
|
</CardHeader>
|
|
80
80
|
<CardContent>
|
|
81
|
-
<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
|
-
<
|
|
87
|
-
<CardTitle className="text-xl">
|
|
86
|
+
<FileText className="size-6 text-primary" />
|
|
87
|
+
<CardTitle className="text-xl">Markdown Excellence</CardTitle>
|
|
88
88
|
</CardHeader>
|
|
89
89
|
<CardContent>
|
|
90
|
-
<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>
|