Spaces:
Running
Running
Update README.md
Browse files
README.md
CHANGED
@@ -1,47 +1,52 @@
|
|
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 |
-
|
|
|
|
|
|
|
|
|
|
|
|
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? Here’s 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 |
+
""")
|