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 (
<>
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
Have a look at the Flower App or the{" "} Todo App.