Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: improve clarity in docs overview #6445

Merged
merged 1 commit into from
Jun 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/docs/src/components/docsearch/search-box.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export const SearchBox = component$((props: SearchBoxProps) => {
enterKeyHint={props.state.activeItemId ? 'go' : 'search'}
spellcheck={false}
autoFocus={props.autoFocus}
placeholder="Search docs or ask a question"
placeholder="Search docs"
type="search"
ref={props.inputRef as any}
onInput$={(event) => {
Expand Down
12 changes: 6 additions & 6 deletions packages/docs/src/routes/docs/(qwik)/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -72,19 +72,19 @@ Qwik is a new kind of web framework that can deliver instant loading web applica
</a>
</div>

## Qwik Goals
## Why Qwik?

<div class="card-grid">
<div class="card">
<h3>General-purpose</h3>
<p>Qwik can be used to build any type of web site or application</p>
<p>Qwik can be used to build any type of website or application.</p>
</div>
<div class="card">
<h3>Instant-on</h3>
<p>Unlike other frameworks, Qwik is resumable which means Qwik applications require 0 hydration. This allows Qwik apps to have instant-on interactivity, regardless of size or complexity.</p>
<h3>Instant Interactivity</h3>
<p>Qwik apps work instantly without any delay because they don't need hydration, regardless of their size or complexity.</p>
</div>
<div class="card">
<h3>Optimized for speed</h3>
<p>Qwik has unprecedented performance, offering sub-second full page loads even on mobile devices. Qwik achieves this by delivering pure HTML, and incrementally loading JS only as-needed.</p>
<h3>HTML first</h3>
<p>Qwik delivers sub-second full page loads, even on mobile, by serving pure HTML and loading JavaScript incrementally as needed.</p>
</div>
</div>
Loading