Welcome
Welcome to the favolous Qwik City. QwikCity is our official kit to build amazing sites:
- 🐎 Powered by Qwik. Zero hydration and instant interactivity.
- 🗃 File based routing (like Nextjs)
- 🌏 Deploy easily to edge: Netlify, Cloudflare, Vercel, Deno...
- 📖 Author content directly in Markdown or MDX. MDX brings the best of markdown and JSX, allow to render Qwik components directly in markdown, like this one:
Next steps
Open your editor and check the following:
- The
pagesfolder: This is where the main content lives. Adding you files (.md,.mdx, or.tsx) will automatically create new URLs. - The
src/layoutfolder: This is what bring form to your content. Different kinds of pages, might need to be rendered by a different layout. This way you can reuse easily the layout across different content. By default, thesrc/layout/defaultis used. - The
src/componentsfolder: QwikCity is still a normal Qwik app. Any custom component, design systems, or funcionality should live here. Notice theheader,footerandcontent-navcomponents. They are used by thedefaultlayout! - The
src/utilsfolder: Place here business logic, or functions that are not components. - The
src/utilsfolder: Place here business logic, or functions that are not components.