-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from kioydiolabs/move-docs-to-vitepress
Initial move to vitepress
- Loading branch information
Showing
16 changed files
with
1,709 additions
and
78 deletions.
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
import { defineConfig } from 'vitepress' | ||
|
||
// https://vitepress.dev/reference/site-config | ||
export default defineConfig({ | ||
title: "Imgal Documentation", | ||
description: "Documentation for Imgal by KioydioLabs", | ||
themeConfig: { | ||
// https://vitepress.dev/reference/default-theme-config | ||
nav: [ | ||
{ text: 'Home', link: '/' }, | ||
{ text: 'Website', link: 'https://imgal.kioydiolabs.org' } | ||
], | ||
|
||
sidebar: [ | ||
{ | ||
items: [ | ||
{ text: 'Introduction', link: '/introduction' }, | ||
] | ||
}, | ||
{ | ||
text: 'Installing Prerequisites', | ||
link: '/prerequisites', | ||
collapsed: true, | ||
items: [ | ||
{ text: 'Windows', link: '/windows-prereq' }, | ||
{ text: 'Linux', link: '/linux-prereq' }, | ||
] | ||
}, | ||
{ | ||
text: 'Creating an image gallery', | ||
link: '/creating-an-image-gallery' | ||
} | ||
], | ||
|
||
socialLinks: [ | ||
{ icon: 'github', link: 'https://github.com/kioydiolabs/imgal' } | ||
] | ||
} | ||
}) |
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
File renamed without changes
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,25 @@ | ||
--- | ||
# https://vitepress.dev/reference/default-theme-home-page | ||
layout: home | ||
|
||
hero: | ||
name: "Imgal Documentation" | ||
text: "Documentation for Imgal by KioydioLabs" | ||
tagline: The OpenSource Image Library Creator | ||
actions: | ||
- theme: brand | ||
text: Get Started | ||
link: /introduction | ||
- theme: alt | ||
text: View Demo | ||
link: https://imgal-demo.kioydiolabs.org | ||
|
||
features: | ||
- title: Choose between cool themes | ||
details: Imgal offers multiple themes to choose from for your image gallery. | ||
- title: Optimized images for the web | ||
details: Imgal resizes images and optimizes them for viewing on the web. | ||
- title: Customize your gallery | ||
details: Imgal galleries are fully customizable, and you can even write your own CSS! | ||
--- | ||
|
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
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
Oops, something went wrong.