diff --git a/index.html b/index.html
index 92c2ef0..53e3fb1 100644
--- a/index.html
+++ b/index.html
@@ -1 +1,16 @@
-
Write something here
+
+
+
+
+
+
+
+
+ Tech Sisters Kenya
+
+
+
+
+ Tech Sisters Kenya-Empowering Women in Tech
+
+
\ No newline at end of file
diff --git a/main.js b/main.js
index 40463ff..abc3c31 100644
--- a/main.js
+++ b/main.js
@@ -1 +1,28 @@
-#write some js here!!
+
+// Initialize variables
+let projectName = "Tech Sisters Kenya";
+let isActive = true;
+let memberCount = 0;
+
+// DOM Elements
+const heading = document.querySelector('h2');
+
+// Event Listeners
+document.addEventListener('DOMContentLoaded', () => {
+ console.log('Project started!');
+ initializeProject();
+});
+
+// Functions
+function initializeProject() {
+ memberCount++;
+ console.log(`Welcome to ${projectName}`);
+ console.log(`Current member count: ${memberCount}`);
+}
+
+// Basic project configuration
+const config = {
+ version: '1.0.0',
+ author: 'Tech Sisters Kenya',
+ lastUpdated: new Date().toLocaleDateString()
+};