acecalisto3 commited on
Commit
ff27d1f
·
verified ·
1 Parent(s): 199df84

Create components/home.py

Browse files
Files changed (1) hide show
  1. 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
+ """)