diff --git a/apps/website/astro.config.mjs b/apps/website/astro.config.mjs index 22276f6..c9ae7c6 100644 --- a/apps/website/astro.config.mjs +++ b/apps/website/astro.config.mjs @@ -25,8 +25,18 @@ export default defineConfig({ favicon: '/favicon.svg', sidebar: [ { - label: 'Guides', - items: [{ label: 'Getting started', slug: 'guides/getting-started' }], + label: 'Getting Started', + items: [ + { label: 'Introduction', slug: 'docs' }, + { label: 'Motivation', slug: 'docs/motivation' }, + ], + }, + { + label: 'Changelog', + items: [ + { label: 'Getting started', slug: 'docs/changelog' }, + { label: 'Features', slug: 'docs/changelog/features' }, + ], }, { label: 'API', link: 'https://api.boring.tools' }, { label: 'Status', link: 'https://status.boring.tools' }, diff --git a/apps/website/src/content/docs/docs/changelog/features.mdx b/apps/website/src/content/docs/docs/changelog/features.mdx new file mode 100644 index 0000000..9aa7bc7 --- /dev/null +++ b/apps/website/src/content/docs/docs/changelog/features.mdx @@ -0,0 +1,24 @@ +--- +title: Features +description: A guide to start with boring tools +--- + +### Conventional Commits + +We support conventional commits. This enables us to automatically create your changelog. + +### Automatic Versioning + +If you need to create a version quickly due to a hotfix. We can do this for you with our automatically generated version. + +### Changelog Generation + +You have two options for creating a changelog. You can either create it manually or have it generated automatically with the help of conventional commits. + +### Page Generation + +We provide you with a public changelog so that you can easily share your changelog with your customers. + +### API + +If you prefer to integrate your changelog into your website yourself, we also offer you an API. diff --git a/apps/website/src/content/docs/docs/changelog/index.mdx b/apps/website/src/content/docs/docs/changelog/index.mdx new file mode 100644 index 0000000..3f0552b --- /dev/null +++ b/apps/website/src/content/docs/docs/changelog/index.mdx @@ -0,0 +1,12 @@ +--- +title: Changelog +description: A guide to start with boring tools +--- + +With our changelog tool it is easier than ever to create your changelog. + +If you use conventional commits, you can create your complete changelog within minutes. + +But it is also possible to create the changelog manually or modify your automatically generated changelog. + +Once you have published your version, you can either use our page tool to display a public version of your changelog or simply embed it into your application via our API. \ No newline at end of file diff --git a/apps/website/src/content/docs/docs/index.mdx b/apps/website/src/content/docs/docs/index.mdx new file mode 100644 index 0000000..3f02584 --- /dev/null +++ b/apps/website/src/content/docs/docs/index.mdx @@ -0,0 +1,10 @@ +--- +title: Introduction +description: Your tools for the boring stuff +--- + +boring.tools is a collection of tools for developers to make your day easier. + +By boring tools we don't mean that they are insignificant or unimportant. Just that many of the important tools are not exciting but have to do their job perfectly. + +However, we want to make the boring tools as attractive as possible so that they are fun to use. Furthermore, it is very important to us that the tools do as much work as possible for the developer. diff --git a/apps/website/src/content/docs/docs/motivation.mdx b/apps/website/src/content/docs/docs/motivation.mdx new file mode 100644 index 0000000..a0273d5 --- /dev/null +++ b/apps/website/src/content/docs/docs/motivation.mdx @@ -0,0 +1,11 @@ +--- +title: Motivation +description: Your tools for the boring stuff +--- + +As a developer, you are faced with a wide variety of tasks and problems every day. It shouldn't be complicated to create the latest changelog or anything similar. + +That's why we have made it our mission to provide the best tools to make the developer's job easier. To make sure that we take the right path with the tools, we have decided to make all code publicly available. + +This also ensures that anyone who wants to can run the tools themselves and thus have full control over the data. In addition, anyone can contribute to the code and have a say in the direction of the project. + diff --git a/apps/website/src/content/docs/guides/getting-started.md b/apps/website/src/content/docs/guides/getting-started.md deleted file mode 100644 index dbb8aab..0000000 --- a/apps/website/src/content/docs/guides/getting-started.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Getting started -description: A guide to start with boring tools ---- - -Thanks for stopping by. Unfortunately there's not much going on here at the moment. But the first tool is already in the starting blocks and will be here soon. There will also be more information about the whole project here. - -So check back soon. - diff --git a/apps/website/src/content/docs/index.mdx b/apps/website/src/content/docs/index.mdx index 852deed..372cfab 100644 --- a/apps/website/src/content/docs/index.mdx +++ b/apps/website/src/content/docs/index.mdx @@ -8,6 +8,6 @@ hero: # file: ../../assets/boring.tools.svg actions: - text: Getting started - link: /guides/getting-started/ + link: /docs icon: right-arrow ---