aboutsummaryrefslogtreecommitdiff
path: root/src/pages/license.tsx
blob: a7d5ee971b91d92c269080c013cb392524ecaffb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
import * as React from 'react';
import { Link, PageProps } from 'gatsby';
import Layout from '../components/layout';
import SEO from '../components/seo';

export default function LicensePage(props: PageProps) {
  return (
    <Layout>
      <SEO title="License and Usage" />

      <div className="max-w-3xl mx-auto px-4 sm:px-6 lg:px-8">
        <button
          onClick={() => {
            throw 'Hello Sentry??';
          }}
        >
          Break the app (and test sentry!)
        </button>
        <Link to="/" className="block mt-4 underline text-blue-600">
          &larr; Back to Home
        </Link>
        <h1 className="mt-8 text-4xl font-extrabold">License and Usage</h1>

        <div className="mt-6 text-gray-900 text-lg">
          <p className="mb-4">
            No part of this site may be used, reproduced, redistributed,
            commercialized, or sold without prior written permission.
          </p>
          <p className="mb-2">
            "This site" includes, but is not limited to, the following:
          </p>
          <ul className="list-disc pl-10 mb-4">
            <li>The format, layout, design, and features of the website</li>
            <li>The contents of the Guide</li>
            <li>
              The structure and organization of topics listed in the guide
            </li>
            <li>Text content of each module</li>
            <li>Problems and links listed in each module</li>
          </ul>
          <p className="mb-2">
            Examples of PERMITTED use cases that do not require prior written
            permission include, but are not limited to, the following:
          </p>
          <ul className="list-disc pl-10 mb-4">
            <li>Using these resources as an individual to improve</li>
            <li>Sharing a link to these resources</li>
            <li>
              Using these resources as part of a FREE class/school club (please
              give credit where credit is due and provide a link to this site)
              <ul className="list-disc pl-10">
                <li>
                  If you're offering free classes/are running a school club and
                  would like specific resources, feel free to reach out to guide
                  coordinator Nathan Wang (email below) and we will try our best
                  to help!
                </li>
              </ul>
            </li>
            <li>
              Writing FREELY AVAILABLE and OPEN SOURCE follow-up material
              <ul className="list-disc pl-10">
                <li>
                  If you would like to contribute to this guide, please reach
                  out to guide coordinator Nathan Wang; we'd greatly appreciate
                  the help! Credit will be given where credit is due.
                </li>
              </ul>
            </li>
          </ul>
          <p className="mb-2">
            Examples of use cases NOT PERMITTED without prior written permission
            include, but are not limited to, the following:
          </p>
          <ul className="list-disc pl-10 mb-4">
            <li>
              Hosting the contents of this website under a different website
            </li>
            <li>Using this guide in a paid class</li>
            <li>
              Using the curriculum (topic lists, topic ordering, problem sets,
              resource lists), modified or otherwise, in a paid class
            </li>
            <li>
              Modifying the curriculum and selling access to the modified
              curriculum or using the modified curriculum in a paid class
            </li>
          </ul>
          <p className="mb-4">
            We reserve the right to revoke permission to use any version of this
            site at any time, including any or all of the permitted use cases
            described above.
          </p>
          <p className="mb-6">
            If you have questions regarding the usage of this site, or would
            like to request to use these resources outside of the authorized use
            cases described above, please contact Nathan Wang at{' '}
            <a
              href="mailto:nathan.r.wang@gmail.com"
              className="text-blue-600 underline"
            >
              nathan.r.wang@gmail.com
            </a>
            .
            {/*While USACO Director Dr. Brian Dean will make all final decisions,*/}
            {/*please do not contact him directly. Instead, direct any questions*/}
            {/*related to the USACO Guide to the coordinator, Nathan Wang.*/}
          </p>
          <Link to="/" className="block mb-4 underline text-blue-600">
            &larr; Back to Home
          </Link>
        </div>
      </div>
    </Layout>
  );
}