Welcome to the kit tutorial!
@implementjs/kit is a full stack framework for building implement apps on top of vite. You get file-based routing, layouts, server rendering, and prerendering without wiring any of it up yourself.
Routes live under src/routes — you can see the project's files in the tree on the left of the editor. A directory maps to a URL segment, and a page.ts file inside it is the page for that URL. The file you're looking at, src/routes/page.ts, is the page for /.
A page default-exports a component:
export default function Page() {
return H1("Hello!");
}
Your task
- In
src/routes/page.ts, change the heading text to sayHello, kit!.
You're done when the preview below the editor shows Hello, kit! — it updates as you type.