diff --git a/src/app/(pages)/womentechmakers/page.jsx b/src/app/(pages)/womentechmakers/page.jsx
new file mode 100644
index 0000000..3b09b31
--- /dev/null
+++ b/src/app/(pages)/womentechmakers/page.jsx
@@ -0,0 +1,231 @@
+"use client"
+
+import React, { useEffect, useRef, useState } from 'react';
+import { Users, Calendar, Mic, Heart } from 'lucide-react';
+
+// Header Section with Vibrant Background
+const Header = () => {
+ return (
+
+
+
Women Techmakers
+
+ Building a world where all women can thrive in tech. Google’s Women Techmakers program provides visibility, community, and resources for women in technology.
+
+ );
+};
+
+// Opportunities Section with Dual Columns
+const Opportunities = () => {
+ const opportunities = [
+ {
+ title: "Become an Ambassador",
+ description:
+ "Lead, network, learn, and shine as a Women Techmakers Ambassador. Become a visible leader in your community.",
+ buttonText: "Learn more",
+ },
+ {
+ title: "Become a Member",
+ description:
+ "Empower other women in their careers by organizing events and providing access to curated resources.",
+ buttonText: "Learn more",
+ },
+ ];
+
+ return (
+
+
+ {opportunities.map((opportunity, index) => (
+
+
{opportunity.title}
+
{opportunity.description}
+
+
+ ))}
+
+
+ );
+};
+
+// Stories Section with Card Layout
+const Stories = () => {
+ const stories = [
+ {
+ title: "Meet Nhasala, WTM Ambassador in Kathmandu",
+ description:
+ "Nhasala Joshi co-founded Women Leaders in Technology in Nepal. She advocates for women's rights in the workplace and understands the need for strong mentors in technology.",
+ },
+ {
+ title: "Black Women in Tech: A.M. Darke",
+ description: "A.M. Darke is a gaming designer creating better representation in the gaming world.",
+ },
+ {
+ title: "Learn UX Writing with Google",
+ description: "Explore the fundamentals of UX writing through Google’s mortgage calculator project.",
+ },
+ {
+ title: "Meet Hanane Ait Dabel",
+ description: "Hanane Ait Dabel, a WTM Ambassador, shares her journey and insights in tech.",
+ },
+ ];
+
+ return (
+