-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
7 changed files
with
940 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,3 +9,4 @@ lib-cov | |
logs | ||
node_modules | ||
temp | ||
docs/.vitepress/cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import { defineConfig } from 'vitepress' | ||
|
||
// https://vitepress.dev/reference/site-config | ||
export default defineConfig({ | ||
title: 'ts-collect', | ||
description: 'A simple, fast, and secure TLS certificate manager for your projects.', | ||
cleanUrls: true, | ||
|
||
themeConfig: { | ||
// https://vitepress.dev/reference/default-theme-config | ||
nav: [ | ||
{ text: 'Docs', link: '/intro' }, | ||
{ text: 'Changelog', link: 'https://github.com/stacksjs/tlsx/releases' }, | ||
], | ||
|
||
sidebar: [ | ||
{ | ||
text: 'Get Started', | ||
items: [ | ||
{ text: 'Introduction', link: '/intro' }, | ||
{ text: 'Install', link: '/install' }, | ||
], | ||
}, | ||
], | ||
|
||
socialLinks: [ | ||
{ icon: 'github', link: 'https://github.com/stacksjs/ts-collect' }, | ||
{ icon: 'bluesky', link: 'https://bsky.app/profile/chrisbreuer.dev' }, | ||
{ icon: 'twitter', link: 'https://twitter.com/stacksjs' }, | ||
], | ||
}, | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
--- | ||
layout: home | ||
|
||
hero: | ||
name: "ts-collect" | ||
text: "A TypeScript Collection Library" | ||
tagline: "Powerful, yet lightweight, Laravel-like Collections written for TypeScript" | ||
actions: | ||
- theme: brand | ||
text: Documentation | ||
link: /intro | ||
- theme: alt | ||
text: View on GitHub | ||
link: https://github.com/stacksjs/ts-collect | ||
|
||
features: | ||
- title: Familiar API | ||
icon: 👪 | ||
details: "Laravel-like API for working with collections in TypeScript." | ||
- title: Lightweight | ||
icon: 🚀 | ||
details: "Small footprint and performance optimized." | ||
- title: Powerful | ||
icon: 💪 | ||
details: "Rich set of methods for working with collections." | ||
- title: Fully Typed | ||
icon: 🏗️ | ||
details: "Written in and for TypeScript, with full type support." | ||
--- |
Oops, something went wrong.