File size: 2,488 Bytes
bdf3708
 
05e71fa
 
 
 
 
 
 
 
 
 
 
bdf3708
05e71fa
bdf3708
05e71fa
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
bdf3708
05e71fa
 
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
import streamlit as st  
  
def main():  
    st.markdown(  
    """  
    <style>    
    .reportview-container {    
        background: url("https://i.imgur.com/8DUYYI1.jpg")    
    }    
    </style>    
    """,    
    unsafe_allow_html=True    
    )    
  
    st.title('MultiTransformer Community')  
  
    st.markdown(  
    """  
    ## 🚀 Why Join Us?  
      
    Here are a few reasons why you might want to join our MultiTransformer community:  
      
    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.  
      
    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.  
      
    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.  
      
    ## 💡 How to Get Started  
      
    New to MultiTransformer? Here’s how to get started:  
      
    1. **Join the Discord**: Our main form of communication is through Discord. You can join our channel by clicking [here](https://discord.gg/tcNNEz5t).  
      
    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.  
      
    3. **Check Out Projects**: Take a look at our ongoing projects. If you're interested in joining any, let us know.  
      
    4. **Stay Active**: Keep an eye on the 'announcements' channel for the latest news and updates.  
      
    We can't wait to see you in the community!  
      
    ## 📌 Our Core Values  
      
    - Collaboration: We believe in the power of working together.  
    - Innovation: We are continuously learning and implementing new ideas.  
    - Respect: We value everyone's ideas and contributions.  
    - Dedication: We are committed to the success of our projects and our community.  
      
    ## 📬 Get In Touch  
      
    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]).  
      
    Let's 🤓learn, 🛠️build, and 🌱grow together!  
    """)  
  
if __name__ == "__main__":  
    main()