# Getting Started
Let's make a page!
First, though, let's make a layout for it. In your project directory, add a `layouts/index.html` file:
```html
My Amazing Website
My Website
```
That `` is where our content will end up. The style in the `` is just to make the website palatable; we won't be focusing much on styles in this tutorial.
Now, let's add the actual page. Add a `pages/index.md` file (Cheetah supports both HTML and Markdown for everything — layouts, pages, and components; Markdown support is provided by [pulldown-cmark](https://github.com/raphlinus/pulldown-cmark)):
```md
## Hello, World!
This is a page.
```
The `` tag tells Cheetah to plug the rendered page into our `layouts/index.html` template that we just created. Template paths are relative to the root of the project.
Now, let's try the dev server. If you chose to build your site as a flake, you're going to want to be in the dev shell for this (if you're not sure, go re-read the [introduction](/)):
```sh
cheetah dev
```
Now, open your browser to `localhost:3000`, and you should see about what you would expect.
## Adding Interactivity
What sets Cheetah apart from Zola, Hugo, or other static site generators (excluding Astro; Astro is in a class of its own, and you should absolutely use it for larger projects) is its support for prerendered interactive components. These components are pure vanilla JavaScript, and don't depend on any bloated UI libraries, making them extremely lightweight. To make one, just create an HTML file in `components`; for instance, a component at `components/x-counter.html` could be rendered as `` in any other template in your site.
Let's add a simple button to greet the user. Make a `components/x-greeter.html` file:
```html
```
Now, add an `` to your home page, and you should find an interactive button!
For a more in-depth tutorial, and some details on how components work, take a look at the [Components](/components.html) page.
## Deployment
You've finished the tutorial! Now it's time to [put your site on the Internet](/deployment.html).