Here are some ideas how to get started
9 |Learn more about Qwik
15 |Read the official documentation
26 |Download our starter repository for Qwik
37 |See our other resources and starter repositories
48 |Join the Kinsta Community forum and connect with developers
62 | > 63 | ); 64 | }); 65 | 66 | export const head: DocumentHead = { 67 | title: 'Welcome to Qwik', 68 | meta: [ 69 | { 70 | name: 'description', 71 | content: 'Qwik site description', 72 | }, 73 | ], 74 | }; 75 | -------------------------------------------------------------------------------- /src/routes/layout.tsx: -------------------------------------------------------------------------------- 1 | import { component$, Slot } from '@builder.io/qwik'; 2 | 3 | export default component$(() => { 4 | return ( 5 | <> 6 |