BuffTeks Event: Host competitions and hackathons that empower students to use classroom knowledge for real-world solutions.
-
BuffTeks Project: Faculty-led coding projects to provide IT solutions and support to problems facing local companies as part of an experiential learning effort.
+
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.
diff --git a/webpages/input_code.py b/webpages/input_code.py
index ce47b771f..748bfb87f 100644
--- a/webpages/input_code.py
+++ b/webpages/input_code.py
@@ -1 +1,6 @@
-print("hello")
\ No newline at end of file
+print("hello")
+
+i = 100
+while(i>10):
+ print(f"Value of {i}")
+ i = i-1
\ No newline at end of file
diff --git a/webpages/project.py b/webpages/project.py
index 4a6fe2d76..67dae4ada 100644
--- a/webpages/project.py
+++ b/webpages/project.py
@@ -1,4 +1,17 @@
import streamlit as st
+import time
def project():
- st.title("BuffTeks Project")
\ No newline at end of file
+ st.title("BuffTeks Project")
+ project_introduction = """
+ Faculty-led coding projects to provide IT solutions and support to problems facing local communities as part of an experiential learning effort.
+ """
+ st.write(project_introduction)
+
+ st.divider()
+
+ # Project Gallery
+ st.subheader("Project Gallery")
+ st.image("./images/CommunityLinkLogo.svg")
+
+