56 lines
2.5 KiB
JavaScript
56 lines
2.5 KiB
JavaScript
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 (
|
|
<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">
|
|
Toolbox
|
|
</HeroImage>
|
|
<Head>
|
|
<title>CS Event Utilities | Luke Granger-Brown</title>
|
|
<link rel="icon" href="/favicon.ico" />
|
|
</Head>
|
|
|
|
<main className={styles.main}>
|
|
<div className={styles.post}>
|
|
<h2>CS Event Utilities</h2>
|
|
|
|
<p>Some useful utilities for dealing with Counter-Strike events (converting Steam IDs between formats, fetching FACEIT User IDs/usernames, etc.)</p>
|
|
|
|
<p>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.</p>
|
|
|
|
<h3 id="tos">Terms of Service</h3>
|
|
|
|
<p>Users are expected to abide by the <a href="https://policies.google.com/terms">Google Terms of Service</a>, as well as those applicable to the features they use:</p>
|
|
|
|
<ul>
|
|
<li>
|
|
<a href="https://corporate.faceit.com/terms-conditions/">FACEIT terms of service (<tt>FACEIT_USERNAME_BY_STEAMID</tt>, <tt>FACEIT_USERID_BY_STEAMID</tt>)</a>
|
|
</li>
|
|
</ul>
|
|
|
|
<h3 id="privacy">Privacy Policy</h3>
|
|
|
|
<p>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.</p>
|
|
|
|
<p>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:</p>
|
|
|
|
<ul>
|
|
<li>
|
|
<a href="https://corporate.faceit.com/privacy/">FACEIT privacy policy (<tt>FACEIT_USERNAME_BY_STEAMID</tt>, <tt>FACEIT_USERID_BY_STEAMID</tt>)</a>
|
|
</li>
|
|
</ul>
|
|
|
|
<h3 id="support">Support</h3>
|
|
|
|
<p>If you require support, please contact <a href="mailto:cseventutilities.support@lukegb.com">cseventutilities.support@lukegb.com</a>.</p>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
)
|
|
}
|