From 6f39857dc7bf59d84c89b311690e858ce0a4724e Mon Sep 17 00:00:00 2001 From: Aylur Date: Tue, 3 Sep 2024 20:32:41 +0200 Subject: docs: migrate to vitepress vitepress feels a bit more polished and clean --- docs/showcases/Showcase.vue | 40 +++++++++++++++++++++++++++++++++++++++ docs/showcases/Showcases.vue | 45 ++++++++++++++++++++++++++++++++++++++++++++ docs/showcases/showcases.ts | 15 +++++++++++++++ 3 files changed, 100 insertions(+) create mode 100644 docs/showcases/Showcase.vue create mode 100644 docs/showcases/Showcases.vue create mode 100644 docs/showcases/showcases.ts (limited to 'docs/showcases') diff --git a/docs/showcases/Showcase.vue b/docs/showcases/Showcase.vue new file mode 100644 index 0000000..46d2138 --- /dev/null +++ b/docs/showcases/Showcase.vue @@ -0,0 +1,40 @@ + + + + + diff --git a/docs/showcases/Showcases.vue b/docs/showcases/Showcases.vue new file mode 100644 index 0000000..86a17bf --- /dev/null +++ b/docs/showcases/Showcases.vue @@ -0,0 +1,45 @@ + + + + + diff --git a/docs/showcases/showcases.ts b/docs/showcases/showcases.ts new file mode 100644 index 0000000..fa0a7bb --- /dev/null +++ b/docs/showcases/showcases.ts @@ -0,0 +1,15 @@ +type Showcase = { + author: string + src: string + url: string +} + +type Grid = T + | [T, T] + | [T, T, T] + | [T, T, T, T] + +export default [ + { author: "Aylur", src: "/astal/showcase/aylur1.png", url: "https://github.com/Aylur/dotfiles" }, + // add more showcases here +] satisfies Array> -- cgit v1.2.3