web/lukegbcom: add mobile-manglement page
This commit is contained in:
parent
9590f08503
commit
c80b817dd6
1 changed files with 36 additions and 0 deletions
36
web/lukegbcom/pages/mobile-manglement.js
Normal file
36
web/lukegbcom/pages/mobile-manglement.js
Normal file
|
@ -0,0 +1,36 @@
|
|||
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>
|
||||
)
|
||||
}
|
Loading…
Reference in a new issue