diff --git a/www/assets/js/platform.js b/www/assets/js/platform.js index 184b38c..413dc8c 100644 --- a/www/assets/js/platform.js +++ b/www/assets/js/platform.js @@ -229,6 +229,8 @@ function initCordova() { switch (link.path) { case "/": break; + case "/app": + break; case "/track": if (link.fragment) { router.navigate("/track/" + link.fragment); @@ -253,21 +255,32 @@ function initCordova() { router.navigate("/telegram"); break; case "/das": - router.navigate("/dropandsend"); + router.navigate("/das"); break; case "/das/map": - router.navigate("/dropandsend"); + router.navigate("/das"); break; case "/das/pickup": if (link.fragment) { sendPickupCode(link.fragment); } else { - router.navigate("/dropandsend"); + router.navigate("/das"); } break; case "/das/account": router.navigate("/account"); break; + case "/mobile": + case "/mobile/": + router.navigate("/mobile"); + break; + case "/postalpoint": + case "/postalpoint/": + router.navigate("/postalpoint"); + break; + case "/money": + router.navigate("/moneyorder"); + break; default: openBrowser(link.url); break; diff --git a/www/pages/dropandsend.html b/www/pages/dropandsend.html index c82c339..4602854 100644 --- a/www/pages/dropandsend.html +++ b/www/pages/dropandsend.html @@ -160,7 +160,7 @@ Scan the Pickup Code to alert us there's a package to send.
  • - Wait for an emailed receipt from us with the tracking code. Your credit card is automatically billed for the cost of shipping. + Wait for an emailed receipt from us with the tracking code. Your credit card is automatically billed for the cost of shipping plus a small pickup fee.
  • diff --git a/www/pages/send.html b/www/pages/send.html index d8b6a63..76bc503 100644 --- a/www/pages/send.html +++ b/www/pages/send.html @@ -23,7 +23,7 @@
    {{#each pages}}
    -
    +


    diff --git a/www/routes.js b/www/routes.js index c15e878..1cd8cf1 100644 --- a/www/routes.js +++ b/www/routes.js @@ -162,7 +162,7 @@ var routes = [ title: "Send a Package", href: "/send", icon: "fa-duotone fa-box-alt", - text: "Find a drop box or schedule a pickup." + text: "Find locations or request a pickup." }, { title: "Notarize a Document", @@ -171,10 +171,10 @@ var routes = [ text: "Book a mobile notary visit." }, { - title: "Write a Telegram", - href: "/telegram", - icon: "fa-duotone fa-typewriter", - text: "Send a hand-delivered telegram anywhere in the Helena area." + title: "My Account", + href: "/account", + icon: "fa-duotone fa-user-circle", + text: "View receipts, get account number, update payment method, and more." }, { title: "Shop for Supplies", @@ -182,18 +182,18 @@ var routes = [ icon: "fa-duotone fa-shopping-cart", text: "Get boxes, labels, and shipping supplies delivered to your door." }, + { + title: "Write a Telegram", + href: "/telegram", + icon: "fa-duotone fa-typewriter", + text: "Send a hand-delivered telegram anywhere in the Helena area." + }, { title: "Money Services", href: "/money", icon: "fa-duotone fa-money-bill-wave", text: "Manage money orders and cryptocurrency." - }, - { - title: "My Account", - href: "/account", - icon: "fa-duotone fa-user-circle", - text: "View receipts, get account number, update payment method, and more." - }, + } ] }) }, {}); @@ -213,25 +213,31 @@ var routes = [ // text: "Send USPS Flat Rate packages from your phone. Printer optional." // }, { - title: "From a Drop Box", - href: "/dropandsend", + title: "Shipping Kiosk", + href: "/postalpoint", + icon: "fa-duotone fa-shop", + text: "Stop by a PostalPoint kiosk at a local business, put your package on the scale, and print postage." + }, + { + title: "Drop Box", + href: "/das", icon: "fa-duotone fa-box-alt", - text: "Bring your package to a Drop and Send drop box or kiosk and we'll ship it for you. No postage or appointment needed." + text: "Just drop your package into a Drop and Send drop box. We'll add postage for you and charge your account." }, { - title: "Request a Pickup", + title: "Pickup", href: "/pickup", icon: "fa-duotone fa-home", text: "Leave your package on your porch and we'll pick it up and ship it for you. No postage or appointment needed." }, { - title: "Visit Us", - href: "/trailer", + title: "Mobile Shipping Center", + href: "/mobile", icon: "fa-duotone fa-caravan", text: "Our Mobile Shipping Center roams the Helena area like a food truck for mail. Find dates and places here." }, { - title: "By Appointment", + title: "Appointment", href: "/appointment/shipping", icon: "fa-duotone fa-calendar-alt", text: "A courier will come to you on your schedule. No account required." @@ -374,7 +380,7 @@ var routes = [ ] }, { - path: '/dropandsend', + path: '/das', name: 'dropandsend', content: compiledPages.dropandsend(), on: { @@ -455,7 +461,7 @@ var routes = [ } }, { - path: '/trailer', + path: '/mobile', name: 'trailer', async: function ( {resolve, reject}) { app.dialog.preloader("Checking the schedule...");