feat(landing-page): link to our docs site

This commit is contained in:
Ayo 2022-11-07 11:10:45 +01:00
parent e6ca1f85bd
commit 0775cf571f
2 changed files with 12 additions and 3 deletions

View file

@ -10,7 +10,15 @@ Thanks for checking out the Astro Reactive Library! Welcome to a new adventure.
This project aims to be a new library of components and utilities for building reactive user interfaces with [Astro](https://astro.build).
We are working on a fun and easy tutorial so you can learn how to build reactive UIs with Astro from scratch using our packages. For now, see our [API Docs](/en/api) for example usage.
We will update this documentation site later with a fun and easy tutorial so you can start building reactive UIs with Astro from scratch using our packages.
> **📝 Note:** See our [API Docs](/en/api) for example usage.
## Installation
```
npm i @astro-reactive/form @astro-reactive/validator
```
## Packages

View file

@ -40,12 +40,13 @@ const pngSrcset = png.map(({ srcset }) => srcset).join(",");
<div
class="mt-8 flex justify-center flex-col items-center astro-lg:flex-row astro-lg:justify-center astro-sm:w-screen"
>
<button
<a
href="https://docs.astro-reactive.dev"
class="flex items-center w-4/5 astro-md:w-1/2 justify-center bg-blue-500 hover:bg-blue-400 text-white font-bold py-2 px-4 border-b-4 border-blue-700 hover:border-blue-500 rounded transition-colors astro-lg:w-auto"
>
<span>Get Started</span>
<Icon name="mdi:arrow-right" width="20px" height="20px" />
</button>
</a>
<Copynpm />
</div>
</div>