update www

This commit is contained in:
Adam Matthiesen 2024-02-01 00:24:08 -08:00
parent d36f56a434
commit ddae15b345
3 changed files with 5 additions and 5 deletions

View File

@ -37,7 +37,7 @@ export default defineConfig({
{ label: 'Basic API Usage', link: '/docs/introduction/api/usage' }, { label: 'Basic API Usage', link: '/docs/introduction/api/usage' },
{ label: 'Templates', link: '/docs/introduction/api/templates', badge: { text: 'NEW', variant: 'success' }, } ], }, ], }, { label: 'Templates', link: '/docs/introduction/api/templates', badge: { text: 'NEW', variant: 'success' }, } ], }, ], },
{ label: 'Default Theme Usage', autogenerate: { directory: 'docs/theme-default'}, }, { label: 'Default Theme Usage', autogenerate: { directory: 'docs/theme-default'}, },
{ label: 'Catppuccin Dark Theme Usage', autogenerate: { directory: 'docs/catppuccin-dark'}, }, { label: 'Catppuccin Theme Usage', autogenerate: { directory: 'docs/catppuccin'}, },
{ label: 'Tutorials', autogenerate: { directory: 'docs/tutorials' }, }, { label: 'Tutorials', autogenerate: { directory: 'docs/tutorials' }, },
{ label: 'Reference', autogenerate: { directory: 'docs/reference' }, }, { label: 'Reference', autogenerate: { directory: 'docs/reference' }, },
], ],

View File

@ -1,6 +1,6 @@
--- ---
title: Manual Install title: Manual Install
description: How to install the Catppuccin Dark theme description: How to install the Catppuccin theme
--- ---
[Demo](https://catppuccindark-demo.astro-ghostcms.xyz/) [Demo](https://catppuccindark-demo.astro-ghostcms.xyz/)
@ -17,7 +17,7 @@ npm create astro@latest
npx astro add @matthiesenxyz/astro-ghostcms tailwind npx astro add @matthiesenxyz/astro-ghostcms tailwind
npm i @matthiesenxyz/astro-ghostcms/astro-ghostcms-catppuccin-dark npm i @matthiesenxyz/astro-ghostcms/astro-ghostcms-catppuccin
``` ```
Then set your `astro.config.ts` to look like this: Then set your `astro.config.ts` to look like this:
@ -32,7 +32,7 @@ export default defineConfig({
site: "https://YOURDOMAINHERE.com/", site: "https://YOURDOMAINHERE.com/",
integrations: [tailwind(), integrations: [tailwind(),
ghostcms({ ghostcms({
theme: "@matthiesenxyz/astro-ghostcms-catppuccin-dark", theme: "@matthiesenxyz/astro-ghostcms-catppuccin",
ghostURL: "https://ghostdemo.matthiesen.xyz", ghostURL: "https://ghostdemo.matthiesen.xyz",
}) })
], ],
@ -44,7 +44,7 @@ export default defineConfig({
```ts frame="code" title="tailwind.config.cjs" ```ts frame="code" title="tailwind.config.cjs"
/** @type {import('tailwindcss').Config} */ /** @type {import('tailwindcss').Config} */
module.exports = { module.exports = {
presets: [require('@matthiesenxyz/astro-ghostcms-catppuccin-dark')] presets: [require('@matthiesenxyz/astro-ghostcms-catppuccin')]
}; };
``` ```