mirror of
https://github.com/mgerb/go-discord-bot
synced 2026-01-09 08:32:48 +00:00
49 lines
1.3 KiB
TypeScript
49 lines
1.3 KiB
TypeScript
import React from 'react';
|
|
|
|
import './Home.scss';
|
|
|
|
interface Props {}
|
|
|
|
interface State {}
|
|
|
|
export class Home extends React.Component<Props, State> {
|
|
render() {
|
|
return (
|
|
<div className="content">
|
|
<div className="card">
|
|
<div className="card__header">Go Discord Bot</div>
|
|
|
|
<h3>04-09-18 Update</h3>
|
|
<ul>
|
|
<li>pubg stats no longer updated on this site</li>
|
|
<li>client dependencies all updated (including webpack 4 and react router 4)</li>
|
|
</ul>
|
|
|
|
<h3>Audio Clipping</h3>
|
|
<p>
|
|
<em>NEW:</em> Audio clipping now supported! Try it out with the <code>clip</code> command!
|
|
</p>
|
|
|
|
<h3>PUBG Stats</h3>
|
|
<p>PUBG stats are pulled from the score API.</p>
|
|
|
|
<h3>Youtube Downloader</h3>
|
|
<p>Convert Youtube URL's to MP3 files.</p>
|
|
|
|
<h3>Soundboard Upload</h3>
|
|
<p>Drag and drop files to upload. Sounds can be played in discord by typing the commands on the next page.</p>
|
|
|
|
<p>
|
|
Check out the source code on
|
|
<a href="https://github.com/mgerb/GoBot" target="_blank">
|
|
{' '}
|
|
GitHub
|
|
<i className="fa fa-github" aria-hidden="true" />
|
|
</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|