import Head from 'next/head'
import Link from 'next/link'
import styles from '../styles/Post.module.scss'
import HeaderNav from '../lib/HeaderNav'
import HeroImage from '../lib/HeroImage'

export default function MobileManglement() {
  return (
    <div className={styles.container}>
      <HeaderNav />
      <HeroImage image="https://picsum.photos/id/60/1920/1200" credit={{ url: "https://unsplash.com/photos/Hi9GSwWkCJk", text: "Vadim Sherbakov" }} withGradient="top-blue">
        Mobile Manglement
      </HeroImage>
      <Head>
        <title>Mobile Manglement | Luke Granger-Brown</title>
        <link rel="icon" href="/favicon.ico" />
      </Head>

      <main className={styles.main}>
        <div className={styles.post}>
	  <h2 id="privacy">Privacy</h2>

	  <p>Your privacy is very important. Your user data is collected primarily for the purpose of authenticating you and determining your access level.</p>

	  <p>If you wish for your user account to be deleted, along with any access granted to you, email <a href="mailto:mobilemanglement.privacy@lukegb.com">mobilemanglement.privacy@lukegb.com</a> and we will delete your account within 2 working days.</p>

	  <p>Anonymised analytics data will be stored for no more than 2 months.</p>

	  <h2 id="support">Support</h2>

	  <p>If you require support, please contact <a href="mailto:mobilemanglement.support@lukegb.com">mobilemanglement.support@lukegb.com</a>.</p>
        </div>
      </main>
    </div>
  )
}