diff --git a/src/app/(pages)/devStudent/page.jsx b/src/app/(pages)/devStudent/page.jsx
new file mode 100644
index 0000000..427a94b
--- /dev/null
+++ b/src/app/(pages)/devStudent/page.jsx
@@ -0,0 +1,174 @@
+"use client";
+import React, { useState } from 'react';
+import { ChevronDown, Users, Code, Calendar, ShieldCheck, ChevronRight, Sparkles, Network } from 'lucide-react';
+
+const Header = () => {
+ return (
+
+
+
+
+
+
+
+ Lead the Next Generation
+
+ of Tech Innovators
+
+
+ Become a Google Developer Student Clubs Lead and shape the future of technology on your campus
+
+
+
+
+
+
+
+
+ );
+};
+
+const ImpactCard = ({ number, title, description }) => (
+
+
{number}
+
{title}
+
{description}
+
+);
+
+const Impact = () => {
+ const stats = [
+ { number: "1000+", title: "Active Clubs", description: "Across universities worldwide" },
+ { number: "50K+", title: "Students Reached", description: "Through workshops and events" },
+ { number: "5K+", title: "Projects Built", description: "Making real-world impact" }
+ ];
+
+ return (
+
+
+
Our Global Impact
+
+ {stats.map((stat, index) => (
+
+ ))}
+
+
+
+ );
+};
+
+const RoleCard = ({ icon: Icon, title, description, color }) => (
+
+
+
+
+
{title}
+
{description}
+
+
+);
+
+const Roles = () => {
+ const roles = [
+ {
+ icon: Users,
+ title: "Community Builder",
+ description: "Create an inclusive space for students to learn and grow together",
+ color: "bg-blue-500"
+ },
+ {
+ icon: Code,
+ title: "Tech Educator",
+ description: "Share knowledge and facilitate hands-on learning experiences",
+ color: "bg-purple-500"
+ },
+ {
+ icon: Network,
+ title: "Network Curator",
+ description: "Connect students with industry experts and opportunities",
+ color: "bg-pink-500"
+ }
+ ];
+
+ return (
+
+
+
Your Role as a Lead
+
+ {roles.map((role, index) => (
+
+ ))}
+
+
+
+ );
+};
+
+const Journey = () => {
+ const steps = [
+ { title: "Apply", description: "Submit your application and share your vision" },
+ { title: "Get Selected", description: "Join the global community of GDSC leads" },
+ { title: "Get Trained", description: "Access exclusive resources and mentorship" },
+ { title: "Lead", description: "Start making an impact on your campus" }
+ ];
+
+ return (
+
+
+
Your Journey Starts Here
+
+ {steps.map((step, index) => (
+
+
+
+ {index + 1}
+
+
{step.title}
+
{step.description}
+
+ {index < steps.length - 1 && (
+
+
+
+ )}
+
+ ))}
+
+
+
+ );
+};
+
+const CallToAction = () => {
+ return (
+
+
+
Ready to Make an Impact?
+
+ Join a global community of student leaders and start making a difference today
+
+
+
+
+ );
+};
+
+const DeveloperStudentClubsLeadsPage = () => {
+ return (
+
+
+
+
+
+
+
+ );
+};
+
+export default DeveloperStudentClubsLeadsPage;
\ No newline at end of file