Tonic commited on
Commit
bdf3708
·
1 Parent(s): 4ad82ef

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +52 -47
README.md CHANGED
@@ -1,47 +1,52 @@
1
- ---
2
- license: mit
3
- title: MultiTransformer Community
4
- sdk: static
5
- emoji: 🚀
6
- colorFrom: blue
7
- colorTo: pink
8
- pinned: true
9
- ---
10
- ![Background Image] (https://i.imgur.com/8DUYYI1.jpg)
11
-
12
- ## 🚀 Why Join Us?
13
-
14
- Here are a few reasons why you might want to join our MultiTransformer community:
15
-
16
- 1. **Community and Collaboration**: We are an active group of learners and developers. You can join our teams to work on exciting projects or form your own.
17
-
18
- 2. **Learning and Development**: By actively participating in our community, you can learn new skills, improve your existing ones, and gain real-world development experience.
19
-
20
- 3. **Contribute and Grow**: You get the opportunity to contribute to projects, which can be a great addition to your portfolio. You will also get to learn from the best and become better.
21
-
22
- ## 💡 How to Get Started
23
-
24
- New to MultiTransformer? Here’s how to get started:
25
-
26
- 1. **Join the Discord**: Our main form of communication is through Discord. You can join our channel by clicking [here](https://discord.gg/tcNNEz5t).
27
-
28
- 2. **Introduce Yourself**: After joining, introduce yourself in the 'intro' channel. Wed love to know more about you, your interests and what you hope to achieve by being a part of MultiTransformer.
29
-
30
- 3. **Check Out Projects**: Take a look at our ongoing projects. If you're interested in joining any, let us know.
31
-
32
- 4. **Stay Active**: Keep an eye on the 'announcements' channel for the latest news and updates.
33
-
34
- We can't wait to see you in the community!
35
-
36
- ## 📌 Our Core Values
37
-
38
- - Collaboration: We believe in the power of working together.
39
- - Innovation: We are continuously learning and implementing new ideas.
40
- - Respect: We value everyone's ideas and contributions.
41
- - Dedication: We are committed to the success of our projects and our community.
42
-
43
- ## 📬 Get In Touch
44
-
45
- If you have any questions, feel free to ask them on our [Discord channel](https://discord.gg/tcNNEz5t). For more formal communication, you can [email us](mailto:admin@abpbot.com).
46
-
47
- Let's 🤓learn, 🛠️build, and 🌱grow together!
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ st.markdown("""
4
+ <style>
5
+ .reportview-container {
6
+ background: url("https://i.imgur.com/8DUYYI1.jpg")
7
+ }
8
+ </style>
9
+ """,
10
+ unsafe_allow_html=True
11
+ )
12
+
13
+ st.title('MultiTransformer Community')
14
+
15
+ st.markdown("""
16
+ ## 🚀 Why Join Us?
17
+
18
+ Here are a few reasons why you might want to join our MultiTransformer community:
19
+
20
+ 1. **Community and Collaboration**: We are an active group of learners and developers. You can join our teams to work on exciting projects or form your own.
21
+
22
+ 2. **Learning and Development**: By actively participating in our community, you can learn new skills, improve your existing ones, and gain real-world development experience.
23
+
24
+ 3. **Contribute and Grow**: You get the opportunity to contribute to projects, which can be a great addition to your portfolio. You will also get to learn from the best and become better.
25
+
26
+ ## 💡 How to Get Started
27
+
28
+ New to MultiTransformer? Heres how to get started:
29
+
30
+ 1. **Join the Discord**: Our main form of communication is through Discord. You can join our channel by clicking [here](https://discord.gg/tcNNEz5t).
31
+
32
+ 2. **Introduce Yourself**: After joining, introduce yourself in the 'intro' channel. We’d love to know more about you, your interests and what you hope to achieve by being a part of MultiTransformer.
33
+
34
+ 3. **Check Out Projects**: Take a look at our ongoing projects. If you're interested in joining any, let us know.
35
+
36
+ 4. **Stay Active**: Keep an eye on the 'announcements' channel for the latest news and updates.
37
+
38
+ We can't wait to see you in the community!
39
+
40
+ ## 📌 Our Core Values
41
+
42
+ - Collaboration: We believe in the power of working together.
43
+ - Innovation: We are continuously learning and implementing new ideas.
44
+ - Respect: We value everyone's ideas and contributions.
45
+ - Dedication: We are committed to the success of our projects and our community.
46
+
47
+ ## 📬 Get In Touch
48
+
49
+ If you have any questions, feel free to ask them on our [Discord channel](https://discord.gg/tcNNEz5t). For more formal communication, you can [email us](mailto:[email protected]).
50
+
51
+ Let's 🤓learn, 🛠️build, and 🌱grow together!
52
+ """)