Skip to content

Commit

Permalink
Add SEO descipritons to all guides.
Browse files Browse the repository at this point in the history
  • Loading branch information
Yoav Ganbar committed Oct 26, 2023
1 parent 8c4af19 commit 752c3b2
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: Best Practices | Guides
description: Learn the best practices for Qwik, a guide for understanding how to use Qwik to its full potential.
contributors:
- mhevery
- the-r3aper7
Expand All @@ -12,6 +13,7 @@ contributors:
- un33k
- egmaleta
- mugan86
- hamatoyogi
---

# Best Practices
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
---
title: Bundle Optimization | Guides
description: Learn about bundle optimization in Qwik, a JavaScript framework for building web applications. This guide explains how to optimize your code by co-locating symbols and chunks, and provides examples of how to create and use symbols in your source code. Follow along with the code snippets and try them out in the included CodeSandbox demo.
contributors:
- mhevery
- hamatoyogi
---

import CodeSandbox from '../../../../../components/code-sandbox/index.tsx';
Expand Down Expand Up @@ -137,7 +139,7 @@ To collect symbol usage from a running application:
3. Open the console and type `symbols` to see the list of symbols used. Used that information to update the `vite.config.ts` file.


> **NOTE:** We are looking into creating better ways of collecting this information in the future.
> **NOTE:** We are looking into creating better ways of collecting this information in the future. (See [Insights](/docs/labs/insights/index.mdx).)
> **NOTE:** Symbols hashes are designed to be stable even across many compilations. However, if the code undergoes complex refactoring it is possible for the hash to change. This will not break the application, but it may cause the symbol to be moved to a different sub-optimal chunk until runtime analytics can be collected again.
Expand Down
2 changes: 2 additions & 0 deletions packages/docs/src/routes/docs/(qwikcity)/guides/mdx/index.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: Markdown and MDX | Guides
description: Learn how to use Markdown and MDX in Qwik City.
contributors:
- manucorporat
- adamdbradley
Expand All @@ -9,6 +10,7 @@ contributors:
- cunzaizhuyi
- the-r3aper7
- zanettin
- hamatoyogi
---

# MDX
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
---
title: Qwik in a nutshell | Introduction
description: Learn the general concepts of Qwik in this shoet introduction guide.
contributors:
- manucorporat
- AnthonyPAlicea
- the-r3aper7
- hamatoyogi
---
# Qwik in a nutshell

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
---
title: Redirects | Guides
description: Learn how to use redirects in Qwik City.
contributors:
- adamdbradley
- manucorporat
- mhevery
- hamatoyogi
---

# Redirects
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
---
title: Serialization and Serialization Boundaries | Guides
description: Learn about serialization and serialization boundaries in Qwik, the process of converting data into a format that can be stored or transmitted.
contributors:
- fabien0102
- wuweiweiwu
- manucorporat
- adamdbradley
- voluntadpear
- hamatoyogi
---

# `$` Boundaries
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
---
title: Static Site Generation (SSG) Overview | Guides
description: Learn how static site generation (SSG) works in Qwik City.
contributors:
- adamdbradley
- AnthonyPAlicea
- mhevery
- hamatoyogi
---

# Static Site Generation (SSG) Overview
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
---
title: HTML attributes | QwikCity
description: Learn how to add attributes to the html tag, in order to add "lang" or other custom attributes.
contributors:
- bab2683
- hamatoyogi
---

# HTML attributes
Expand Down
1 change: 1 addition & 0 deletions packages/docs/src/routes/docs/(qwikcity)/routing/index.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: Routing | Qwik City
description: Learn about routing in Qwik City which is like other file-system based such as Next.js, SvelteKit, SolidStart or Remix.
contributors:
- manucorporat
- nnelgxorz
Expand Down

0 comments on commit 752c3b2

Please sign in to comment.