mirror of
https://github.com/gogrlx/docs.grlx.dev.git
synced 2026-04-02 03:08:53 -07:00
feat(index): added Discord card
This commit is contained in:
@@ -114,7 +114,7 @@ export default defineConfig({
|
||||
components: {
|
||||
Footer: './src/components/AdatomicFooter.astro',
|
||||
},
|
||||
customCss: ['./src/tailwind.css'],
|
||||
customCss: ['./src/tailwind.css', './src/custom.css'],
|
||||
defaultLocale: 'root',
|
||||
locales: {
|
||||
root: {
|
||||
|
||||
@@ -16,18 +16,26 @@ hero:
|
||||
icon: github
|
||||
---
|
||||
|
||||
import { Card, CardGrid } from '@astrojs/starlight/components';
|
||||
import { Card, CardGrid } from '@astrojs/starlight/components'
|
||||
|
||||
## Next steps
|
||||
|
||||
<CardGrid stagger>
|
||||
<Card title="Install grlx with our Getting Started" icon="laptop">
|
||||
Check out our [Getting Started](/getting-started) started page on how to install `grlx`
|
||||
</Card>
|
||||
<Card title="Learn about ingredient components" icon="setting">
|
||||
Check out our [ingredients](/ingredients/overview) to learn more about how to configure your fleet
|
||||
</Card>
|
||||
<Card title="Read the docs" icon="open-book">
|
||||
Learn more in [the grlx Docs](/getting-started)
|
||||
</Card>
|
||||
<Card title="Install grlx with our Getting Started" icon="laptop">
|
||||
Check out our [Getting Started](/getting-started) started page on how to
|
||||
install grlx
|
||||
</Card>
|
||||
<Card title="Learn about ingredient components" icon="setting">
|
||||
Check out our [ingredients](/ingredients/overview) to learn more about how
|
||||
to configure your fleet
|
||||
</Card>
|
||||
<Card title="Read the docs" icon="open-book" class="open-book">
|
||||
Learn more in [the grlx Docs](/getting-started)
|
||||
</Card>
|
||||
<div class="discord-bg">
|
||||
<Card title="Join our Discord" icon="discord" class="discord">
|
||||
Join our [Discord](https://discord.gg/RNsZ3KWjXm) for learning more about
|
||||
grlx
|
||||
</Card>
|
||||
</div>
|
||||
</CardGrid>
|
||||
|
||||
5
src/custom.css
Normal file
5
src/custom.css
Normal file
@@ -0,0 +1,5 @@
|
||||
.discord-bg .card .icon{
|
||||
background-color: #7289da;
|
||||
--sl-card-border: #454FBF !important;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user