From c80b817dd67df1ff54146fcf451ee10278eb479e Mon Sep 17 00:00:00 2001 From: Luke Granger-Brown Date: Wed, 3 Jul 2024 20:19:15 +0100 Subject: [PATCH] web/lukegbcom: add mobile-manglement page --- web/lukegbcom/pages/mobile-manglement.js | 36 ++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 web/lukegbcom/pages/mobile-manglement.js diff --git a/web/lukegbcom/pages/mobile-manglement.js b/web/lukegbcom/pages/mobile-manglement.js new file mode 100644 index 0000000000..aff8983538 --- /dev/null +++ b/web/lukegbcom/pages/mobile-manglement.js @@ -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 ( +
+ + + Mobile Manglement + + + Mobile Manglement | Luke Granger-Brown + + + +
+
+

Privacy

+ +

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

+ +

If you wish for your user account to be deleted, along with any access granted to you, email mobilemanglement.privacy@lukegb.com and we will delete your account within 2 working days.

+ +

Anonymised analytics data will be stored for no more than 2 months.

+ +

Support

+ +

If you require support, please contact mobilemanglement.support@lukegb.com.

+
+
+
+ ) +}