Update app.py
Browse files
app.py
CHANGED
@@ -87,6 +87,7 @@ def generate_image(prompt):
|
|
87 |
return None
|
88 |
|
89 |
def main():
|
|
|
90 |
st.title("Free Waifu Character Generator")
|
91 |
st.write("""
|
92 |
Welcome to the Free Waifu Character Generator! This app allows you to create a unique waifu with just one click.
|
@@ -95,7 +96,7 @@ def main():
|
|
95 |
""")
|
96 |
|
97 |
# Layout containers
|
98 |
-
left_col, right_col = st.columns(2)
|
99 |
|
100 |
with left_col:
|
101 |
st.header("Waifu Settings")
|
|
|
87 |
return None
|
88 |
|
89 |
def main():
|
90 |
+
st.set_page_config(layout="wide")
|
91 |
st.title("Free Waifu Character Generator")
|
92 |
st.write("""
|
93 |
Welcome to the Free Waifu Character Generator! This app allows you to create a unique waifu with just one click.
|
|
|
96 |
""")
|
97 |
|
98 |
# Layout containers
|
99 |
+
left_col, right_col = st.columns([1, 2])
|
100 |
|
101 |
with left_col:
|
102 |
st.header("Waifu Settings")
|