import streamlit as st import os st.set_page_config(page_title="Bill Aja", page_icon="", layout="wide") css_path = os.path.join(os.path.dirname(__file__), "style.css") if os.path.exists(css_path): with open(css_path, "r") as f: st.markdown(f"", unsafe_allow_html=True) st.markdown("""

Bill Aja

Upload a receipt, let AI extract every item, then split the bill fairly with your friends.

""", unsafe_allow_html=True) c1, c2, c3 = st.columns([1, 2, 1]) with c2: st.page_link("pages/1_AI_OCR.py", label="AI OCR & Preprocessing", use_container_width=True) st.page_link("pages/2_Split_Bill.py", label="Split Ur Bill", use_container_width=True) st.markdown("""
Made by Group 14
Albertus Adrian W
Clement Ernest Atmadja
Steven Hosea
Jonathan Raffael
Nicholas Driyadis Tjoe
""", unsafe_allow_html=True)