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("""
""", 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
- BuffTeks Project: Faculty-led coding projects to provide IT solutions and support to problems facing local communities as part of an experiential learning effort.
- BuffTeks Classroom: An open learning platform devoted to sharing knowledge of information technology including Python programming and web application development.
- BuffTeks Event: Host competitions and hackathons that empower students to use classroom knowledge for real-world solutions.
""", unsafe_allow_html=True)
# Faculty Advisors
st.markdown(
"""
Faculty Advisors
Dr. Jeffry Babb
BuffTeks Founder
""", 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"""
""", unsafe_allow_html=True)