Spaces:
Running
Running
Create components/home.py
Browse files- components/home.py +11 -0
components/home.py
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
def show_home_page():
|
4 |
+
st.title("Welcome to CodeCraft GPT!")
|
5 |
+
st.write("This is the home page.")
|
6 |
+
|
7 |
+
st.markdown("""
|
8 |
+
CodeCraft GPT is an all-in-one platform designed for AI/ML developers.
|
9 |
+
It offers a set of mini-apps for code documentation, optimization, refactoring,
|
10 |
+
style checking, testing, language translation, and database interaction.
|
11 |
+
""")
|