Update pages/📸_InstaMuse.py
Browse files- pages/📸_InstaMuse.py +16 -7
pages/📸_InstaMuse.py
CHANGED
|
@@ -11,13 +11,22 @@ st.set_page_config(page_title="Instamuse", page_icon=":camera:", layout='wide')
|
|
| 11 |
# Initialize the caption generator
|
| 12 |
caption_generator = CaptionGenerator.CaptionGenerator()
|
| 13 |
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
|
| 22 |
# Main page content
|
| 23 |
st.markdown('## InstaMuse Photo Caption Generator')
|
|
|
|
| 11 |
# Initialize the caption generator
|
| 12 |
caption_generator = CaptionGenerator.CaptionGenerator()
|
| 13 |
|
| 14 |
+
# Define custom CSS for background color
|
| 15 |
+
page_bg = '''
|
| 16 |
+
<style>
|
| 17 |
+
body {
|
| 18 |
+
background-color: #21011e; /* Dark Purple */
|
| 19 |
+
}
|
| 20 |
+
</style>
|
| 21 |
+
'''
|
| 22 |
+
|
| 23 |
+
|
| 24 |
+
# # Sidebar configuration
|
| 25 |
+
# with st.sidebar:
|
| 26 |
+
# st.image(os.path.join('images', 'insta.png'), width=300)
|
| 27 |
+
# st.title("Welcome to InstaMuse!")
|
| 28 |
+
# st.subheader("Turn your snapshots into social media sensations.")
|
| 29 |
+
# st.write("Start turning heads with your posts. Use InstaMuse now and watch your likes soar!")
|
| 30 |
|
| 31 |
# Main page content
|
| 32 |
st.markdown('## InstaMuse Photo Caption Generator')
|