import streamlit as st from .join_us import join_us def home(): # Custom CSS to style the page st.markdown(""" """, unsafe_allow_html=True) # Header st.markdown("""

BuffTeks Student Organization

Building Skills, Crafting Code, Bridging Communities

""", unsafe_allow_html=True) # Our Mission st.markdown("""

Our Mission

Empower members with advanced software development knowledge, foster new skills and technologies in a collaborative and engaging community.

""", unsafe_allow_html=True) # Our Activities st.markdown("""

Our Activities

""", unsafe_allow_html=True) # Faculty Advisors st.markdown( """

Faculty Advisors

Dr. Jeffry Babb
Dr. Jeffry Babb
BuffTeks Founder
Dr. Carl Zhang
Dr. Carl Zhang
czhang@wtamu.edu
Mr. Kareem Dana
Mr. Kareem Dana
kdana@wtamu.edu
""", unsafe_allow_html=True) # Student Officers # load image in base64 import base64 def load_image(image_path): with open(image_path, "rb") as image_file: return base64.b64encode(image_file.read()).decode() jesus_torres_img = load_image("./images/student_officer_photo/jesus_torres.jpg") benjamin_mosley_img = load_image("./images/student_officer_photo/benjamin_mosley.jpg") st.markdown( f"""

Student Officers

Jesus Torres
Jesus Torres
President
jtorres8@buffs.wtamu.edu
Benjamin Mosley
Benjamin Mosley
Tech Lead
brmosley1@buffs.wtamu.edu
""", unsafe_allow_html=True)