Tonic commited on
Commit
05e71fa
·
1 Parent(s): a2faf28

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +53 -56
app.py CHANGED
@@ -1,61 +1,58 @@
1
- ---
2
- license: mit
3
- title: MultiTransformer Community
4
- sdk: streamlit
5
- emoji: 🚀
6
- colorFrom: blue
7
- colorTo: pink
8
- Pinned: False
9
- ---
10
  import streamlit as st
11
 
12
- st.markdown("""
13
- <style>
14
- .reportview-container {
15
- background: url("https://i.imgur.com/8DUYYI1.jpg")
16
- }
17
- </style>
18
- """,
19
- unsafe_allow_html=True
20
- )
 
 
21
 
22
- st.title('MultiTransformer Community')
23
 
24
- st.markdown("""
25
- ## 🚀 Why Join Us?
26
-
27
- Here are a few reasons why you might want to join our MultiTransformer community:
28
-
29
- 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.
30
-
31
- 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.
32
-
33
- 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.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
34
 
35
- ## 💡 How to Get Started
36
-
37
- New to MultiTransformer? Here’s how to get started:
38
-
39
- 1. **Join the Discord**: Our main form of communication is through Discord. You can join our channel by clicking [here](https://discord.gg/tcNNEz5t).
40
-
41
- 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.
42
-
43
- 3. **Check Out Projects**: Take a look at our ongoing projects. If you're interested in joining any, let us know.
44
-
45
- 4. **Stay Active**: Keep an eye on the 'announcements' channel for the latest news and updates.
46
-
47
- We can't wait to see you in the community!
48
-
49
- ## 📌 Our Core Values
50
-
51
- - Collaboration: We believe in the power of working together.
52
- - Innovation: We are continuously learning and implementing new ideas.
53
- - Respect: We value everyone's ideas and contributions.
54
- - Dedication: We are committed to the success of our projects and our community.
55
-
56
- ## 📬 Get In Touch
57
-
58
- 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]).
59
-
60
- Let's 🤓learn, 🛠️build, and 🌱grow together!
61
- """)
 
 
 
 
 
 
 
 
 
 
1
  import streamlit as st
2
 
3
+ def main():
4
+ st.markdown(
5
+ """
6
+ <style>
7
+ .reportview-container {
8
+ background: url("https://i.imgur.com/8DUYYI1.jpg")
9
+ }
10
+ </style>
11
+ """,
12
+ unsafe_allow_html=True
13
+ )
14
 
15
+ st.title('MultiTransformer Community')
16
 
17
+ st.markdown(
18
+ """
19
+ ## 🚀 Why Join Us?
20
+
21
+ Here are a few reasons why you might want to join our MultiTransformer community:
22
+
23
+ 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.
24
+
25
+ 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.
26
+
27
+ 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.
28
+
29
+ ## 💡 How to Get Started
30
+
31
+ New to MultiTransformer? Here’s how to get started:
32
+
33
+ 1. **Join the Discord**: Our main form of communication is through Discord. You can join our channel by clicking [here](https://discord.gg/tcNNEz5t).
34
+
35
+ 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.
36
+
37
+ 3. **Check Out Projects**: Take a look at our ongoing projects. If you're interested in joining any, let us know.
38
+
39
+ 4. **Stay Active**: Keep an eye on the 'announcements' channel for the latest news and updates.
40
+
41
+ We can't wait to see you in the community!
42
+
43
+ ## 📌 Our Core Values
44
+
45
+ - Collaboration: We believe in the power of working together.
46
+ - Innovation: We are continuously learning and implementing new ideas.
47
+ - Respect: We value everyone's ideas and contributions.
48
+ - Dedication: We are committed to the success of our projects and our community.
49
+
50
+ ## 📬 Get In Touch
51
+
52
+ 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]).
53
+
54
+ Let's 🤓learn, 🛠️build, and 🌱grow together!
55
+ """)
56
 
57
+ if __name__ == "__main__":
58
+ main()