diff options
author | 2021-09-06 22:49:23 -0700 | |
---|---|---|
committer | 2021-09-06 22:49:23 -0700 | |
commit | d67fddfbec0eb1c02ffe301a4616a3aa55577e33 (patch) | |
tree | 86fcb1ca213cf9a51db7a2c0a30d377a74fbd16a /docs/src | |
parent | ef09c3d3bf75fa3b84f869eab409cdd211cb4842 (diff) | |
download | astro-d67fddfbec0eb1c02ffe301a4616a3aa55577e33.tar.gz astro-d67fddfbec0eb1c02ffe301a4616a3aa55577e33.tar.zst astro-d67fddfbec0eb1c02ffe301a4616a3aa55577e33.zip |
docs: small themes copy updates
Diffstat (limited to 'docs/src')
-rw-r--r-- | docs/src/pages/themes.astro | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/docs/src/pages/themes.astro b/docs/src/pages/themes.astro index ea2c81d34..65ecbe57a 100644 --- a/docs/src/pages/themes.astro +++ b/docs/src/pages/themes.astro @@ -16,9 +16,7 @@ import components from '../data/components.json'; </style> <Layout content={{title: 'Themes'}} hideRightSidebar> <Markdown> - ## Featured Themes - - Astro is supported by a growing ecosystem of third-pary themes and components. + ## Featured Theme </Markdown> <div class="card-grid"> {themes.community.map((item)=>(<Card data={item} />))} @@ -26,7 +24,7 @@ import components from '../data/components.json'; <Markdown> ## Official Themes - Astro maintains several official themes for common use-cases like documentation, portfolios, and more. + Astro maintains several official themes for documentation sites, portfolios, and more. </Markdown> <div class="card-grid"> {themes.official.map((item)=>(<Card data={item} />))} @@ -34,7 +32,7 @@ import components from '../data/components.json'; <Markdown> ## Featured Packages - Our package ecosystem is growing! Check out these featured community packages. + Our package ecosystem is growing! Check out these featured community packages. Search the entire collection [on npm.](https://www.npmjs.com/search?q=keywords%3Aastro-component) </Markdown> <div class="card-grid"> {components.community.map((item)=>(<Card data={item} />))} |