Spaces:
Sleeping
Sleeping
Upload Contact.py
Browse files- pages/Contact.py +23 -0
pages/Contact.py
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#!/usr/bin/env python3
|
2 |
+
# -*- coding: utf-8 -*-
|
3 |
+
"""
|
4 |
+
Created on Sun Mar 3 10:01:51 2024
|
5 |
+
|
6 |
+
@author: selbl
|
7 |
+
"""
|
8 |
+
|
9 |
+
import streamlit as st
|
10 |
+
|
11 |
+
def main():
|
12 |
+
st.set_page_config(
|
13 |
+
page_title="Lyric Generation Model",
|
14 |
+
page_icon=":microphone:", # You can use an emoji or a URL to an image
|
15 |
+
#layout="wide",
|
16 |
+
initial_sidebar_state="auto",
|
17 |
+
)
|
18 |
+
st.title("Contact")
|
19 |
+
st.text("You can refer to the Github repository for any feedback/comments")
|
20 |
+
st.write("[Repository](https://github.com/Selbl/LyricGeneration)")
|
21 |
+
|
22 |
+
if __name__ == "__main__":
|
23 |
+
main()
|