summaryrefslogtreecommitdiff
path: root/docs/src/components (follow)
AgeCommit message (Collapse)AuthorFilesLines
2022-02-07Remove docs from monorepo (#2517)Gravatar Jonathan Neal 20-1521/+0
* Remove docs from monorepo * Update PULL_REQUEST_TEMPLATE.md * Update relative doc references with links or todo
2022-01-19Fix visibility of focused skip link on docs site (#2405)Gravatar Chris Swithinbank 1-1/+1
* Fix visibility of focused skip link on docs site The `sr-only` utility class used on the “Skip to Content” link at the top of each page in the docs is designed to be paired with the `focus:not-sr-only` class. `focus:not-sr-only` was missing on the skip link, meaning it was never shown even when focused. * Fix visibility of focused skip link in docs example project Apply the same fix as ac890b56 to the same component in the docs starter project.
2022-01-03Docs/move-english-docs-to-"en"-folder (#2268)Gravatar Caleb Jasik 1-5/+1
* Move english pages under `/en` and fix broken links hopefully * Add meta refresh tags for `/` to `/en/` url moves + make `/index.astro` work without js * update languageselect for new en format Co-authored-by: Fred K. Schott <fkschott@gmail.com>
2021-12-22Use accessible indentation (#2253)Gravatar Jonathan Neal 20-1082/+1246
2021-11-29Add italian to language selector (#1983)Gravatar Stefano Novelli 1-0/+3
2021-11-23update repo URL (#1994)Gravatar Fred K. Schott 2-3/+3
2021-11-23Fix client:visible (#1999)Gravatar Drew Powers 1-5/+5
Fixes #1963
2021-11-11[ci] yarn formatGravatar jonathantneal 1-1/+2
2021-11-11Update Astro docs to use v0.21 (#1738)Gravatar Jonathan Neal 6-10/+12
* update docs site to leverage astro v0.21 * fix resolutions * fix docsearch import * Resolve `@docsearch/react` is a cross-execution-context-friendly way * chore: update astro version * fix: remove line highlighting syntax * fix: braces inside of attr string * Match current astro version * Trim leading newline in MainLayout.astro template * Move card grid styles into Layout Co-authored-by: Nate Moore <nate@skypack.dev>
2021-11-10Add `theme-color` meta tag to sites (#1777)Gravatar Caleb Jasik 1-0/+1
This both lets browsers reflect this color + provides Discord embeds a nice accent color
2021-10-25[ci] yarn formatGravatar natemoo-re 1-1/+1
2021-10-25Add Algolia docsearch language facet (#1568)Gravatar Taylor Beseda 3-4/+12
* add docsearch language facet and initialize Algolia with the language facet filter * disable facetFilters in docsearch revisit implementation once Astro docs have been indexed by lang
2021-10-25Update LeftSidebar.astroGravatar Fred K. Schott 1-3/+0
2021-10-20Fix sponsors title contrast (#1590)Gravatar AsyncBanana 1-2/+4
2021-10-18Made sponsored links more accessible (#1576)Gravatar AsyncBanana 1-2/+2
2021-10-18Added label to language selection (#1577)Gravatar AsyncBanana 1-0/+1
2021-10-14Add Vercel sponsorship logo (#1555)Gravatar Drew Powers 1-42/+48
* Add Vercel sponsorship logo Also normalize other logos * Add Vercel logo to www * Add logos to docs
2021-10-14Added descriptions to docs pages (#1550)Gravatar AsyncBanana 1-4/+4
2021-10-01docs: Improvements to language select and theme toggle (#1473)Gravatar Mikkel Tønder 2-24/+5
2021-09-30Translation for Getting Started [RU] (#1461)Gravatar Pavel Mineev 1-0/+3
* add getting started in russian * add russian in the lang selector * add russian in blog post * minor changes * translation for the comments in the code Co-authored-by: Alex <bespoyasov@me.com> * changes from @nlopin Co-authored-by: Nikolai Lopin <lopinopulos@gmail.com> * sync with original docs #1464 * accept changes from @nlopin with slight changes Co-authored-by: Alex <bespoyasov@me.com> Co-authored-by: Nikolai Lopin <lopinopulos@gmail.com>
2021-09-24docs: Add Japanese translation of getting started page (#1375)Gravatar Kyosuke 1-0/+3
2021-09-16Add sponsorship logos (#1371)Gravatar Drew Powers 1-2/+39
2021-09-14Add types to examples and docs (#1347)Gravatar Matthew Phillips 1-3/+9
* Adds a changeset * Add types to examples and docs * Make changes based on review feedback * Avoid using the variable named props * Make path a const
2021-09-06cleanup docs changesGravatar Fred K. Schott 8-556/+12
2021-09-06[ci] yarn formatGravatar FredKSchott 3-85/+95
2021-09-06scale back the examples pageGravatar Fred K. Schott 12-399/+62
2021-09-06Adds examples pageGravatar aFuzzyBear 17-0/+923
2021-09-05docs: add a link to next article (#1308)Gravatar Sam Chen 1-1/+19
2021-09-04📘DOC: Fix URL normalization for the Left Sidebar in docs (#1299)Gravatar Caleb Jasik 1-2/+4
* Fix URL normalization for the Left Sidebar in docs * Move the fix into `util.ts` as suggested by @FredKSchott
2021-08-27Add danish translation of the getting started page (#1243)Gravatar Mikkel Tønder 1-0/+3
* Add danish translation of the getting started page * Add danish to KNOWN_LANGUAGES
2021-08-25added bengali translation of the getting started page (#1215)Gravatar Rafid Muhymin Wafi 1-0/+3
2021-08-25Arabic getting-started translation (#1166)Gravatar حمد بنقالي 1-0/+3
Co-authored-by: = <=>
2021-08-25docs: fix header rtl logo view (#1224)Gravatar Fred K. Schott 1-0/+1
2021-08-23[i18n][Docs] Add Korean Translation of Getting Started page (#1189)Gravatar Joohoon Cha 1-0/+3
* translate getting-started.md into KR * add kr to KNOWN_LANGUAGES * add kr config to sidebar * add kr option to the language selector
2021-08-23Add a `titleClosure` to the `HeadSEO.astro` component (#1140)Gravatar Caleb Jasik 1-4/+6
* Testing out adding a `titleClosure` to the `HeadSEO.astro` component I think the api needs a bit of improvement, but the basic idea is you can pass this in to a published astro component for specifying how you want it to format your title! * Refactor to make it pretty * Rename the `titleClosure()` prop to `formatTitle()` to be more clear * Use title, with site title as the fallback (#1143) See og:title guidance (https://developers.facebook.com/docs/sharing/webmasters/) Co-authored-by: Jonathan Neal <jonathantneal@hotmail.com>
2021-08-23[ci] yarn formatGravatar matthewp 1-1/+0
2021-08-23fix the rtl search bar view (#1177)Gravatar Fred K. Schott 3-16/+14
2021-08-20update universal idGravatar Fred K. Schott 1-3/+3
2021-08-17add back dark-mode aware faviconsGravatar Fred K. Schott 1-1/+2
2021-08-17docs: fix select language in Safari (#1127) (#1128)Gravatar Oleg 1-2/+27
* docs: fix select language in Safari (#1127) * docs: fix select language top position * docs: fix select language position
2021-08-16cleanup example faviconsGravatar Fred K. Schott 1-1/+2
2021-08-10Do not observe visible hydrate components more than once (#1015)Gravatar Fred K. Schott 1-1/+1
* add support for truely unique astro root uids * update test to test uniqueness
2021-08-06[ci] yarn formatGravatar FredKSchott 1-51/+51
2021-08-06Styled the dark version of the search bar. (#1041)Gravatar V. Tinev 1-49/+58
* Styled the dark version for the search bar. Changed some stlyes for both themes. * Adjusted the SearchFooter glow. Co-authored-by: Peter Singh <drgaud@hotmail.com> * Removed search footer glow. * Added inset shadow for the search modal. Co-authored-by: V. Tinev <vtinev@2create.studio> Co-authored-by: Peter Singh <drgaud@hotmail.com>
2021-08-06Fix contrast issue in lang picker (#1044)Gravatar Marcus Otterström 1-2/+2
2021-08-06[ADD][i18n][Docs] French translation of getting started page (#1040)Gravatar Philippe L'ATTENTION 1-0/+3
* [ADD][i18n][Docs] French translation of getting started page - Add Sidebar translated menus - Add lang code fr to language selection - Add french translated getting-started page * [ADD][i18n][Docs] Adding 'fr' key to known langs for automatic redirect
2021-08-05Added Bulgarian translation for the Getting Started page. (#1032)Gravatar V. Tinev 1-0/+3
* Added translation for the Getting Started page. * Removed remaining English text from the translated version. * Added Bulgarian as a known langugage (index.astro). * Added Bulgarian as a known langugage (index.astro). Co-authored-by: V. Tinev <vtiev@2create.studio>
2021-08-05Docs: Add zh-tw translation for Setup (#980)Gravatar YM 1-1/+1
* Add zh-tw translation of quick start in doc * Add translation into zh-tw for Install in docs * Update getting started for zh-tw * Update language label for Traditional Chinese * Update toc titles for zh-hant-TW * Update lang attribute for zh-TW * Add zh-tw translation of example in doc * Update sidebar items for zh-TW in Docs
2021-08-04Add Portuguese Translation of Getting Started page (#981)Gravatar Laura Caroline 1-0/+3
* Add Portuguese Translation of Getting Started page Based on Brazilian Portuguese * Fix/add improvement sugestions. * Add missing preposition * Update file to represent also the region The Only changes to the existing files were the addition of the lang attribute * Add language selection for Brazilian Portuguese
2021-08-04Add spanish getting-started translation (#988)Gravatar Jesus Gil 1-0/+3
* Add spanish getting-started translation Translated getting-started page to spanish. Added spanish links to config.ts, and spanish option to header language dropdown. * add language code to frontmatter Co-authored-by: Fred K. Schott <fkschott@gmail.com>