Once you start developing your own app / lib, you should remove all unnecessary parts left from the sample app.
index.html
<body> tag,
everything should be removed, except
the <script> tag
that initializes Amber and starts your app;
then you can add elements specific to your own app
to the page.Web
package from amber-contrib-web module,
but want to retain the jQuery wrapper,
you should run bower uninstall amber-contrib-web --save
from your CLI.Web
package from the amber-contrib-web module,
nor the jQuery wrapper from amber-contrib-jquery,
you should run bower uninstall amber-contrib-web amber-contrib-jquery --save
from your CLI.bower_components folder,
then run bower install from your CLI.