Skip to content

Commit

Permalink
Merge pull request #7 from a-gleeson/new-homepage
Browse files Browse the repository at this point in the history
New homepage with cabinet photo
  • Loading branch information
James-Osmond authored Apr 16, 2024
2 parents b296e5e + 3a0d600 commit 9f55cde
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions app/home.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import os

import streamlit as st

from config.logging import setup_logging
Expand Down Expand Up @@ -72,3 +74,21 @@
unsafe_allow_html=True,
)
st.write("Select a page to the left to get started.")

col1, col2 = st.columns([1, 1])
with col1:
st.image(os.path.join("static", "images", "cabinet-meeting.png"))
with col2:
st.markdown(
"<p text-align: justify; text-justify: inter-word;>"
"This is a tool to take in meeting recordings and generate transcripts, leveraging the power of AI."
"Once a transcript is generated, the app can be used to make edits to timestamps, speakers, and items.</p>",
unsafe_allow_html=True,
)
st.markdown(
"<p text-align: justify; text-justify: inter-word;>"
"The app further utilises LLMs to generate iterative summaries of topics discussed during meetings, "
"and identifies key facts and statistics raised during the meeting that need to be scrutinised further."
"</p>",
unsafe_allow_html=True,
)
Binary file added static/images/cabinet-meeting.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 9f55cde

Please sign in to comment.