-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
120 additions
and
40 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
title: Contributing to the main site | ||
description: Help improve our documentation by writing to the docs. | ||
--- | ||
|
||
import {Author} from '../../../components/Author'; | ||
import { LinkCard, CardGrid } from '@astrojs/starlight/components'; | ||
|
||
<Author author="Tommerty"/> | ||
|
||
--- | ||
|
||
coming soon |
This file was deleted.
Oops, something went wrong.
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 @@ | ||
--- | ||
title: Getting Started with Doras | ||
description: Doras.to is a platform to help creators share their presence online. With tools such as our Link in Bio, link shortening, and more, we help creators share their content with their audience. | ||
--- | ||
|
||
import {Author} from '../../../components/Author'; | ||
import { LinkCard, CardGrid } from '@astrojs/starlight/components'; | ||
|
||
<Author author="Tommerty"/> | ||
|
||
# Welcome to Doras! 🚀 | ||
Doras is a fully featured platform to help creators share their presence online. With tools such as our Link in Bio, link shortening, and more, we help creators share their content with their audience. Let's get you started! | ||
|
||
### Creating an Account | ||
On Doras, it's really simple to get started. First, head over to the [sign up page here](https://admin.doras.to/signup). You'll be greeted with a form that looks like this (please note that this picture is from pre-release and may look slightly different): | ||
|
||
[![Sign Up Form](https://gezel.b-cdn.net/doras/docs/Screenshot%202023-11-07%20at%2020.26.59.png)](https://admin.doras.to/auth) | ||
|
||
You can choose to sign up via SSO such as Discord, Twitch or X.com, or you can manually create an account with the form. | ||
|
||
:::tip[Don't worry!] | ||
If you signed up via SSO, you will be prompted to choose your username after you create your account, and can change to a email/password at any time. | ||
::: | ||
|
||
Once you're signed in, don't forget to check your email. You should have an email from `[email protected]` to verify your email address. If you don't see it, check your spam folder. If you're certain it's not there, please drop us a message on [Discord](https://gezel.io/discord) or open an issue on [GitHub](https://github.com/doras-to/doras/issues) and we'll help you out, just let us know your username! |
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 |
---|---|---|
@@ -1,36 +1,31 @@ | ||
--- | ||
title: Welcome to Starlight | ||
title: Doras Docs | ||
description: Get started building your docs site with Starlight. | ||
template: splash | ||
hero: | ||
tagline: Congrats on setting up a new Starlight project! | ||
tagline: For help with all things Doras | ||
image: | ||
file: ../../assets/houston.webp | ||
file: ../../assets/favicon.svg | ||
actions: | ||
- text: Example Guide | ||
link: /guides/example/ | ||
- text: Go to the docs | ||
link: /guides/getting-started/ | ||
icon: right-arrow | ||
variant: primary | ||
- text: Read the Starlight docs | ||
link: https://starlight.astro.build | ||
- text: Head to Doras | ||
link: https://doras.to | ||
icon: external | ||
--- | ||
|
||
import { Card, CardGrid } from '@astrojs/starlight/components'; | ||
|
||
## Next steps | ||
|
||
<CardGrid stagger> | ||
<Card title="Update content" icon="pencil"> | ||
Edit `src/content/docs/index.mdx` to see this page change. | ||
</Card> | ||
<Card title="Add new content" icon="add-document"> | ||
Add Markdown or MDX files to `src/content/docs` to create new pages. | ||
<Card title="Search is your friend" icon="magnifier"> | ||
The searchbox is the best place to find anything. It's quick, powerful, and will help you find what you need. | ||
</Card> | ||
<Card title="Configure your site" icon="setting"> | ||
Edit your `sidebar` and other config in `astro.config.mjs`. | ||
<Card title="Community Driven Documentation" icon="github"> | ||
The docs are written by the community, and validated by the community & administration to ensure integrity. Want to contribute? [Learn how](/contributing/contribute-to-the-docs/). | ||
</Card> | ||
<Card title="Read the docs" icon="open-book"> | ||
Learn more in [the Starlight Docs](https://starlight.astro.build/). | ||
<Card title="Join the community" icon="discord"> | ||
We have an active community to ask any questions the docs might not answer! Head over [to our Discord](https://gezel.io/discord) and ask away! | ||
</Card> | ||
</CardGrid> |