···22title: Starlight Coolere Anerkennung
33description: Füge einen netten Hinweis auf Starlight oder Astro am Ende des Inhaltsverzeichnisses hinzu.
44head:
55- - tag: title
66- content: Starlight Coolere Anerkennung
55+ - tag: title
66+ content: Starlight Coolere Anerkennung
77template: splash
88editUrl: false
99hero:
1010- tagline: Füge einen netten Hinweis auf Starlight oder Astro am Ende des Inhaltsverzeichnisses hinzu.
1111- image:
1212- dark: ../../../assets/big-logo-dark.png
1313- light: ../../../assets/big-logo-light.png
1414- actions:
1515- - text: Loslegen
1616- link: /de/getting-started/
1717- icon: right-arrow
1010+ tagline: Füge einen netten Hinweis auf Starlight oder Astro am Ende des Inhaltsverzeichnisses hinzu.
1111+ image:
1212+ dark: ../../../assets/big-logo-dark.png
1313+ light: ../../../assets/big-logo-light.png
1414+ actions:
1515+ - text: Loslegen
1616+ link: /de/getting-started/
1717+ icon: right-arrow
1818---
19192020import { Card, CardGrid } from "@astrojs/starlight/components";
···2222## Nächste Schritte
23232424<CardGrid stagger>
2525- <Card title="Installiere das Plugin" icon="puzzle">
2626- In der [Startanleitung](/de/getting-started/) findest du Anweisungen zur Installation.
2727- </Card>
2828- <Card title="Konfiguriere das Plugin" icon="setting">
2929- Bearbeite deine Konfiguration in der Datei `astro.config.mjs`.
3030- </Card>
2525+ <Card title="Installiere das Plugin" icon="puzzle">
2626+ In der [Startanleitung](/de/getting-started/) findest du Anweisungen zur
2727+ Installation.
2828+ </Card>
2929+ <Card title="Konfiguriere das Plugin" icon="setting">
3030+ Bearbeite deine Konfiguration in der Datei `astro.config.mjs`.
3131+ </Card>
3132</CardGrid>
32333334import { ContributorList } from "starlight-contributor-list";
+31-31
docs/src/content/docs/getting-started.mdx
···171718181. `starlight-cooler-credit` is a Starlight [plugin](https://starlight.astro.build/reference/plugins/). Install it by running the following command in your terminal:
19192020- <Tabs syncKey="pkg">
2020+ <Tabs syncKey="pkg">
21212222- <TabItem label="npm">
2222+ <TabItem label="npm">
23232424- ```sh
2525- npm install starlight-cooler-credit
2626- ```
2424+ ```sh
2525+ npm install starlight-cooler-credit
2626+ ```
27272828- </TabItem>
2828+ </TabItem>
29293030- <TabItem label="pnpm">
3030+ <TabItem label="pnpm">
31313232- ```sh
3333- pnpm add starlight-cooler-credit
3434- ```
3232+ ```sh
3333+ pnpm add starlight-cooler-credit
3434+ ```
35353636- </TabItem>
3636+ </TabItem>
37373838- <TabItem label="Yarn">
3838+ <TabItem label="Yarn">
39394040- ```sh
4141- yarn add starlight-cooler-credit
4242- ```
4040+ ```sh
4141+ yarn add starlight-cooler-credit
4242+ ```
43434444- </TabItem>
4444+ </TabItem>
45454646- </Tabs>
4646+ </Tabs>
474748482. Configure the plugin in your Starlight [configuration](https://starlight.astro.build/reference/configuration/#plugins) in the `astro.config.mjs` file.
49495050- ```diff lang="js"
5151- // astro.config.mjs
5252- import starlight from '@astrojs/starlight'
5353- import { defineConfig } from 'astro/config'
5454- +import starlightCoolerCredit from 'starlight-cooler-credit'
5050+ ```diff lang="js"
5151+ // astro.config.mjs
5252+ import starlight from '@astrojs/starlight'
5353+ import { defineConfig } from 'astro/config'
5454+ +import starlightCoolerCredit from 'starlight-cooler-credit'
55555656- export default defineConfig({
5757- integrations: [
5858- starlight({
5959- + plugins: [starlightCoolerCredit()],
6060- title: 'My Docs',
6161- }),
6262- ],
6363- })
6464- ```
5656+ export default defineConfig({
5757+ integrations: [
5858+ starlight({
5959+ + plugins: [starlightCoolerCredit()],
6060+ title: 'My Docs',
6161+ }),
6262+ ],
6363+ })
6464+ ```
656566663. [Start the development server](https://starlight.astro.build/getting-started/#start-the-development-server) to preview the plugin in action.
6767
+17-16
docs/src/content/docs/index.mdx
···22title: Starlight Cooler Credit
33description: Add a nice credit to Starlight or Astro at the bottom of Table of Contents.
44head:
55- - tag: title
66- content: Starlight Cooler Credit
55+ - tag: title
66+ content: Starlight Cooler Credit
77template: splash
88editUrl: false
99hero:
1010- tagline: Add a nice credit to Starlight or Astro at the bottom of Table of Contents.
1111- image:
1212- dark: ../../assets/big-logo-dark.png
1313- light: ../../assets/big-logo-light.png
1414- actions:
1515- - text: Get Started
1616- link: /getting-started/
1717- icon: right-arrow
1010+ tagline: Add a nice credit to Starlight or Astro at the bottom of Table of Contents.
1111+ image:
1212+ dark: ../../assets/big-logo-dark.png
1313+ light: ../../assets/big-logo-light.png
1414+ actions:
1515+ - text: Get Started
1616+ link: /getting-started/
1717+ icon: right-arrow
1818---
19192020import { Card, CardGrid } from "@astrojs/starlight/components";
···2222## Next steps
23232424<CardGrid stagger>
2525- <Card title="Install the plugin" icon="puzzle">
2626- Check the [getting started guide](/getting-started/) for installation instructions.
2727- </Card>
2828- <Card title="Configure the plugin" icon="setting">
2929- Edit your config in the `astro.config.mjs` file.
3030- </Card>
2525+ <Card title="Install the plugin" icon="puzzle">
2626+ Check the [getting started guide](/getting-started/) for installation
2727+ instructions.
2828+ </Card>
2929+ <Card title="Configure the plugin" icon="setting">
3030+ Edit your config in the `astro.config.mjs` file.
3131+ </Card>
3132</CardGrid>
32333334import { ContributorList } from "starlight-contributor-list";