# Getting Started with SvelteKit
SvelteKit is the official framework for building web applications with Svelte. In this guide, we'll explore the basics and build a simple application.
## Installation
```bash
npm create svelte@latest my-app
cd my-app
npm install
npm run dev
```
## Key Concepts
- **Routing**: File-based routing system
- **Layouts**: Shared UI components
- **Load Functions**: Data fetching
- **Actions**: Form handling
SvelteKit makes it easy to build fast, modern web applications.