Skip to content

Commit

Permalink
feat: add commercial usage and copyright notice
Browse files Browse the repository at this point in the history
  • Loading branch information
davwheat committed Nov 2, 2023
1 parent 7733466 commit 5a3f861
Showing 1 changed file with 24 additions and 10 deletions.
34 changes: 24 additions & 10 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,23 @@ const useStyles = makeStyles({
marginRight: 16,
},
atosNotice: {
background: '#fdd',
background: '#fee',
marginTop: 16,
padding: 16,

'& :last-child': {
marginBottom: 0,
},
},
copyrightWarning: {
marginTop: 24,
padding: 16,
background: '#fdd',

'& > :last-child': {
marginBottom: 0,
},
},
})

function IndexPage({ location }): JSX.Element {
Expand All @@ -49,21 +59,25 @@ function IndexPage({ location }): JSX.Element {
<MainSelector />

<aside className={classes.atosNotice}>
<h2>Notice about Atos Worldline announcements</h2>

<p>
Following a legal notice from Worldline IT Services UK Limited, I have been forced to remove all copies of Atos Anne and Matt's
recordings from this website. I am disappointed by their decision to request this.
</p>

<p>
For more information, an open letter to the users of this site, and a copy of the legal notice and email conversation, please see{' '}
<Link to="/atos-worldline">the new, dedicated Atos Worldline page</Link>.
Files relating to the Atos Worldline system have been removed from this site. <Link to="/atos-worldline">Learn more</Link>
</p>
</aside>

<AnnouncementPanel />
</main>

<aside className={classes.copyrightWarning}>
<p>
Content on this site has either been self-recorded, or released into the public domain via Freedom of Information requests. Copyright
may still apply to these files, and may be held by either the respective TOCs, PIS/CIS manufacturers or even the voice artists.
</p>
<p>
You <u>must not</u> use the content on this site for commercial purposes. These files and systems are provided for personal use
only in an attempt to archive historial PIS/CIS systems. Abuse of the website and its contents could result in legal action against you
by copyright holders, and/or cause this site to be taken down.
</p>
</aside>
</Layout>
)
}
Expand Down

0 comments on commit 5a3f861

Please sign in to comment.