<script context="module">
import { browser, dev } from '$app/env';
// we don't need any JS on this page, though we'll load
// it in dev so that we get hot module replacement...
export const hydrate = dev;
// ...but if the client-side router is already loaded
// (i.e. we came here from elsewhere in the app), use it
export const router = browser;
</script>
<svelte:head>
<title>About</title>
<meta name="description" content="About this app" />
</svelte:head>
<div class="about content">
<h1>About this app</h1>
<p>
We list guitar chords for all the popular bollywood songs in a clean and simple way. Let the
guitar rhythm rock your world and people around.
</p>
<code>Drop us a note to request for your favourite songs.</code>
</div>