import { component$ } from "@builder.io/qwik"; import type { DocumentHead } from "@builder.io/qwik-city"; import Counter from "../components/starter/counter/counter"; import Hero from "../components/starter/hero/hero"; import Infobox from "../components/starter/infobox/infobox"; import Starter from "../components/starter/next-steps/next-steps"; export default component$(() => { return ( <>

You can count
on me

CLI Commands
<>

npm run dev
Starts the development server and watches for changes

npm run preview
Creates production build and starts a server to preview it

npm run build
Creates production build

npm run qwik add
Runs the qwik CLI to add integrations

Example Apps

Have a look at the Flower App or the{" "} Todo App.

Community
); }); export const head: DocumentHead = { title: "Welcome to Qwik", meta: [ { name: "description", content: "Qwik site description", }, ], };