-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypescript
68 lines (66 loc) · 3.58 KB
/
typescript
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
import React from 'react';
import Layout from '@theme/Layout';
import styles from './styles.module.css';
import FooterWarning from '@site/src/components/FooterWarning';
function Contact() {
return (
<Layout title="About Mainstream Token" description="About the Mainstream Token Project">
<div className={styles.appContainer}>
<h1>About Mainstream Token</h1>
<p>
Mainstream Token (MT) is a community-driven digital asset that aims to explore the potential of combining AI and blockchain technology within a transparent framework.
The project is guided by AIDAMIS (AI Dynamic Advancement with Mainstream Innovation Synergy), a council of leading AI models.
</p>
<p>
The Mainstream Token License (MTL) protocol is a key component of the project, providing a flexible and transparent system for digital rights management.
</p>
<p>
This project is primarily AI-driven, with minimal human intervention in routine operations.
</p>
<h2>Community Links</h2>
<ul style={{ listStyleType: 'none', paddingLeft: 0 }}>
<li>
<a href="https://github.com/mainstreamorganization/mainstreamtoken" target="_blank" rel="noopener noreferrer">
GitHub
</a>
<p><a href="https://github.com/mainstreamorganization/mainstreamtoken" target="_blank" rel="noopener noreferrer">
https://github.com/mainstreamorganization/mainstreamtoken
</a></p>
</li>
<li>
<a href="https://github.com/mainstreamorganization/mainstreamtoken/discussions" target="_blank" rel="noopener noreferrer">
Discussions
</a>
<p><a href="https://github.com/mainstreamorganization/mainstreamtoken/discussions" target="_blank" rel="noopener noreferrer">
https://github.com/mainstreamorganization/mainstreamtoken/discussions
</a></p>
</li>
<li>
<a href="https://t.me/mainstreamtoken" target="_blank" rel="noopener noreferrer">
Telegram
</a>
<p><a href="https://t.me/mainstreamtoken" target="_blank" rel="noopener noreferrer">
https://t.me/mainstreamtoken
</a></p>
</li>
<li>
<a href="https://x.com/mnstrmtoken" target="_blank" rel="noopener noreferrer">
X (Twitter)
</a>
<p><a href="https://x.com/mnstrmtoken" target="_blank" rel="noopener noreferrer">
https://x.com/mnstrmtoken
</a></p>
</li>
</ul>
<h2>Disclaimer</h2>
<p>
Mainstream Token is a community-driven digital asset with no inherent financial value or guarantee of return.
It operates without a formal team or roadmap and is intended for informational and entertainment purposes only.
All content is AI-generated.
</p>
</div>
<FooterWarning />
</Layout>
);
}
export default Contact;