From 92a06ee8126fcad46948924f3075595acce2f5a2 Mon Sep 17 00:00:00 2001 From: Luke Granger-Brown Date: Sun, 7 May 2023 14:39:39 +0100 Subject: [PATCH] cs-event-utilities: init page --- web/lukegbcom/pages/cs-event-utilities.js | 56 +++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 web/lukegbcom/pages/cs-event-utilities.js diff --git a/web/lukegbcom/pages/cs-event-utilities.js b/web/lukegbcom/pages/cs-event-utilities.js new file mode 100644 index 0000000000..f63e1ae0f4 --- /dev/null +++ b/web/lukegbcom/pages/cs-event-utilities.js @@ -0,0 +1,56 @@ +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 CSEventUtilities() { + return ( +
+ + + Toolbox + + + CS Event Utilities | Luke Granger-Brown + + + +
+
+

CS Event Utilities

+ +

Some useful utilities for dealing with Counter-Strike events (converting Steam IDs between formats, fetching FACEIT User IDs/usernames, etc.)

+ +

The publisher of this software is not affiliated with FACEIT or Valve Software, nor is this software endorsed by them. References to FACEIT, Valve, Counter-Strike, or similar are for identification purposes only and do not indicate a relationship or endorsement.

+ +

Terms of Service

+ +

Users are expected to abide by the Google Terms of Service, as well as those applicable to the features they use:

+ + + +

Privacy Policy

+ +

Some non-personally-identifiable information may be provided automatically by Google Apps Script to the owner of the project, such as invocation counts and general usage data. This data, in aggregate, may be analysed to identify which features are used and inform future development.

+ +

Some provided Apps Script functions require the use of external services, which may retain data according to their own privacy policies, which are linked below:

+ + + +

Support

+ +

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

+
+
+
+ ) +}