Skip to content

Commit a61ec2d

Browse files
committed
Create content for docs card grid
1 parent 4ef723e commit a61ec2d

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

src/app/docs.tsx

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
const docs = [
2+
{
3+
title: "Auto Splitters",
4+
description:
5+
"Documentation and tips for creating auto splitters for LibreSplit.",
6+
to: "/docs/auto-splitters.md",
7+
},
8+
{
9+
title: "Settings and Keybinds",
10+
description: "Customize controls and behavior.",
11+
to: "/docs/settings-keybinds.md",
12+
},
13+
{
14+
title: "Split Files",
15+
description: "JSON split file documentation.",
16+
to: "/docs/split-files.md",
17+
},
18+
{
19+
title: "Themes",
20+
description: "Style the app to your liking.",
21+
to: "/docs/themes.md",
22+
},
23+
{
24+
title: "Troubleshooting",
25+
description: "Fix common issues and edge cases.",
26+
to: "/docs/troubleshooting.md",
27+
},
28+
];
29+
130
export function Docs() {
231
return <p>Placeholder</p>;
332
}

0 commit comments

Comments
 (0)