// Shared site data.
const PHONE_DISPLAY = '01934 442030';
const PHONE_TEL = 'tel:+441934442030';
const WHATSAPP_URL = 'https://wa.me/message/NDVJHCMIBWXVP1';
const BOOKING_URL = 'book-an-appointment.html';

// Office address + a Google Maps "directions" link that hands the destination
// straight to the visitor's sat-nav / Maps app.
const ADDRESS = '6 Tollhouse Road, Churchill, Winscombe, BS25 5AN';
const MAPS_DIRECTIONS = 'https://www.google.com/maps/dir/?api=1&destination=' + encodeURIComponent(ADDRESS);

// Nav links for the Services menus. Each points at its own page; the pages are
// styled placeholders for now, ready for real content.
const SERVICES = [
  { label: 'Fast Track LPA', hash: 'fast-track-lpa.html', highlight: true },
  { label: 'Online Wills', hash: 'online-wills.html' },
  { label: 'Home Visit Wills', hash: 'home-visit-wills.html' },
  { label: 'Lasting Power of Attorney', hash: 'lasting-power-of-attorney.html' },
  { label: 'Family & Property Trusts', hash: 'family-property-trusts.html' },
  { label: 'Lifetime Trusts', hash: 'lifetime-trusts.html' },
  { label: 'Probate', hash: 'probate.html' },
  { label: 'Will Storage & Updates', hash: 'will-storage-and-updates.html' },
];

// The Society of Will Writers disclaimer — shown wherever we describe our
// estate planning and legal services, since Stephen is not a solicitor.
const SWW_DISCLAIMER = 'Futura Planning Ltd is not a firm of solicitors. We are a qualified and indemnified member of the Society of Will Writers and as such follow their code of conduct and adherence to best practice.';

Object.assign(window, { PHONE_DISPLAY, PHONE_TEL, WHATSAPP_URL, BOOKING_URL, SERVICES, SWW_DISCLAIMER, ADDRESS, MAPS_DIRECTIONS });
