How to create new page

In svelte, it is very easy to create new page.

1. There is no extra configuration for route. just create a new folder at src/routes/(common-layout)/MyFolder

2. Then create a page on that folder named +page.svelte


<svelte:head>
	<title>Starter</title>
</svelte:head>

<p>My Starter FIle</p>

<style lang="scss">p {
  font-size: 14px;
  color: #000;
}</style>

That's it.