diff --git a/images/CommunityLinkLogo.svg b/images/CommunityLinkLogo.svg
new file mode 100644
index 000000000..3774103d4
--- /dev/null
+++ b/images/CommunityLinkLogo.svg
@@ -0,0 +1,20 @@
+
diff --git a/webpages/__pycache__/code_editor.cpython-312.pyc b/webpages/__pycache__/code_editor.cpython-312.pyc
index b7a387927..781306cb5 100644
Binary files a/webpages/__pycache__/code_editor.cpython-312.pyc and b/webpages/__pycache__/code_editor.cpython-312.pyc differ
diff --git a/webpages/__pycache__/home.cpython-312.pyc b/webpages/__pycache__/home.cpython-312.pyc
index 518ac6209..2500aae2e 100644
Binary files a/webpages/__pycache__/home.cpython-312.pyc and b/webpages/__pycache__/home.cpython-312.pyc differ
diff --git a/webpages/__pycache__/project.cpython-312.pyc b/webpages/__pycache__/project.cpython-312.pyc
index 4594753a0..b327dcc7d 100644
Binary files a/webpages/__pycache__/project.cpython-312.pyc and b/webpages/__pycache__/project.cpython-312.pyc differ
diff --git a/webpages/buffteks.html b/webpages/buffteks.html
index dbc849464..1abde925b 100644
--- a/webpages/buffteks.html
+++ b/webpages/buffteks.html
@@ -105,7 +105,7 @@
Our Activities
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")
+
+