mirror of
https://github.com/xHyroM/roles-bot.git
synced 2024-11-12 20:18:06 +01:00
31 lines
1.3 KiB
TypeScript
31 lines
1.3 KiB
TypeScript
|
import Head from "next/head";
|
||
|
|
||
|
export default function Home() {
|
||
|
return (
|
||
|
<div>
|
||
|
<Head>
|
||
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.3.1/styles/default.min.css" />
|
||
|
</Head>
|
||
|
<section className="flex-container">
|
||
|
<div className="container animate__animated animate__fadeIn">
|
||
|
<h1>Generate</h1>
|
||
|
<form>
|
||
|
<input placeholder="Your Message" name="message" id="message"/><br />
|
||
|
<input placeholder="Channel Id" name="channel" id="channel"/>
|
||
|
</form>
|
||
|
<button id="addRole">Add Role</button>
|
||
|
<button id="buttonCopy">Copy</button>
|
||
|
<img src="slash.png" className="responsive" />
|
||
|
<pre className={`hljs language-json copy`} id="jsonPre"><code id="json" className="code"></code></pre>
|
||
|
</div>
|
||
|
</section>
|
||
|
|
||
|
<script src="https://kit.fontawesome.com/5acf4d9e80.js" crossOrigin="anonymous"></script>
|
||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
|
||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.3.1/highlight.min.js"></script>
|
||
|
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
|
||
|
<script src="script.js"></script>
|
||
|
<script>hljs.initHighlightingOnLoad();</script>
|
||
|
</div>
|
||
|
)
|
||
|
}
|