In Next.js, a **page** is UI that is unique to a route. You can define a page by exporting a component from a `page.js` (or `.tsx`) file.
By default, the `app/page.tsx` file is the home page of your application (the `/` route).
## Try it Yourself!
In the interactive editor below, modify the HTML to add a welcoming paragraph. Notice how easy it is to export a standard React component to act as a full page!
Try it Yourself
export default function Page() {
return (
<div>
<h1>Hello, Next.js!</h1>
<p>This is my first Next.js app.</p>
</div>
);
}