create-ardo 2.3.0 → 2.4.1

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": "create-ardo",
3
- "version": "2.3.0",
3
+ "version": "2.4.1",
4
4
  "description": "Scaffolding tool for Ardo documentation projects",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,4 +1,5 @@
1
1
  import { Hero, Features } from "ardo/ui"
2
+ import { Zap, Sparkles, Palette, ArrowRight, Github } from "ardo/icons"
2
3
 
3
4
  export default function HomePage() {
4
5
  return (
@@ -8,25 +9,35 @@ export default function HomePage() {
8
9
  text="Documentation Made Simple"
9
10
  tagline="Focus on your content, not configuration"
10
11
  actions={[
11
- { text: "Get Started", link: "/guide/getting-started", theme: "brand" },
12
- { text: "GitHub", link: "https://github.com", theme: "alt" },
12
+ {
13
+ text: "Get Started",
14
+ link: "/guide/getting-started",
15
+ theme: "brand",
16
+ icon: <ArrowRight size={16} />,
17
+ },
18
+ {
19
+ text: "GitHub",
20
+ link: "https://github.com",
21
+ theme: "alt",
22
+ icon: <Github size={16} />,
23
+ },
13
24
  ]}
14
25
  />
15
26
  <Features
16
27
  items={[
17
28
  {
18
29
  title: "Fast",
19
- icon: "⚡",
30
+ icon: <Zap size={28} strokeWidth={1.5} />,
20
31
  details: "Lightning fast builds with Vite",
21
32
  },
22
33
  {
23
34
  title: "Simple",
24
- icon: "✨",
35
+ icon: <Sparkles size={28} strokeWidth={1.5} />,
25
36
  details: "Easy to set up and use",
26
37
  },
27
38
  {
28
39
  title: "Flexible",
29
- icon: "🎨",
40
+ icon: <Palette size={28} strokeWidth={1.5} />,
30
41
  details: "Fully customizable theme",
31
42
  },
32
43
  ]}