diff --git a/app/(public)/creators/page.tsx b/app/(public)/creators/page.tsx
new file mode 100644
index 0000000..1a688a6
--- /dev/null
+++ b/app/(public)/creators/page.tsx
@@ -0,0 +1,302 @@
+"use client";
+
+import Link from "next/link";
+import Image from "next/image";
+import { motion, Variants } from "framer-motion";
+import {
+ Globe,
+ Mail,
+ Users,
+ Code2,
+ Palette,
+ BrainCircuit,
+ Award,
+ GraduationCap,
+} from "lucide-react";
+import { FaGithub, FaLinkedin, FaTwitter, FaInstagram } from "react-icons/fa";
+
+const teamMembers = [
+ {
+ id: "shiv",
+ name: "Shiv Raj Singh",
+ role: "Founder & Full-Stack Engineer",
+ bio: "Creator of Hyper Learning. Built the entire platform from scratch, designed the architecture, AI systems, and leads product development.",
+ image: "https://avatars.githubusercontent.com/u/144125626?v=4",
+ socials: {
+ github: "https://github.com/imuniqueshiv",
+ linkedin: "https://www.linkedin.com/in/shiv-raj-singh-387973299/",
+ twitter: "https://x.com/imuniqueshiv",
+ portfolio: "https://imuniqueshiv-portfolio.vercel.app/",
+ email: "mailto:singhshivraj89969@gmail.com",
+ },
+ icon: Code2,
+ isFounder: true,
+ },
+ {
+ id: "nitin",
+ name: "Nitin Pandey",
+ role: "UI/UX Designer & Frontend Developer",
+ bio: "Designs intuitive user interfaces and improves the overall user experience of Hyper Learning.",
+ image: "https://avatars.githubusercontent.com/u/272735419?v=4",
+ socials: {
+ github: "https://github.com/nitinmohan18",
+ linkedin: "https://linkedin.com/in/nitin-mohan-9251ab328",
+ instagram: "https://www.instagram.com/nitin__.pandey/",
+ portfolio: "https://nitinpandey-portfolio.vercel.app/",
+ email: "mailto:mohannitin494@gmail.com",
+ },
+ icon: Palette,
+ isFounder: false,
+ },
+ {
+ id: "ramoo",
+ name: "Ramoo Kachhee",
+ role: "Frontend Developer",
+ bio: "Builds responsive user interfaces and implements frontend components for Hyper Learning.",
+ image: "https://avatars.githubusercontent.com/u/231412959?v=4",
+ socials: {
+ github: "https://github.com/RamuuXfree",
+ linkedin: "https://www.linkedin.com/in/ramoo-kachhee-9b1616405/",
+ instagram: "https://www.instagram.com/frrr_ace/",
+ email: "mailto:ramoo@hyperlearning.tech",
+ },
+ icon: Code2,
+ isFounder: false,
+ },
+];
+
+export default function TeamPage() {
+ const containerVariants: Variants = {
+ hidden: { opacity: 0 },
+ visible: {
+ opacity: 1,
+ transition: {
+ staggerChildren: 0.15,
+ delayChildren: 0.1,
+ },
+ },
+ };
+
+ const itemVariants: Variants = {
+ hidden: { opacity: 0, y: 20 },
+ visible: {
+ opacity: 1,
+ y: 0,
+ transition: {
+ duration: 0.5,
+ ease: "easeOut",
+ },
+ },
+ };
+
+ return (
+
+ {/* Hero */}
+
+
+
+
+
+
+
+ Meet the Team
+
+
+
+ The People Behind
+
+
+ Hyper Learning
+
+
+
+
+ A small team of dedicated individuals working together to make
+ engineering education more accessible and effective through
+ AI-powered learning.
+
+
+
+
+
+ {/* Team Grid */}
+
+
+
+ {teamMembers.map((member) => {
+ const Icon = member.icon;
+
+ return (
+
+ {/* Founder Badge */}
+ {member.isFounder && (
+
+ Founder
+
+ )}
+
+ {/* Glow */}
+
+
+ {/* Avatar */}
+
+
+
+
+ {/* Content */}
+
+
+ {member.name}
+
+
+ {member.role}
+
+
+ {member.bio}
+
+
+ {/* Social Links */}
+
+ {member.socials.github && (
+
+
+
+ )}
+
+ {member.socials.linkedin && (
+
+
+
+ )}
+
+ {member.socials.twitter && (
+
+
+
+ )}
+
+ {member.socials.instagram && (
+
+
+
+ )}
+
+ {member.socials.portfolio && (
+
+
+
+ )}
+
+ {member.socials.email && (
+
+
+
+ )}
+
+
+
+ );
+ })}
+
+
+ {/* Bottom CTA */}
+
+
+ Want to Join the Team?
+
+
+ Hyper Learning is open-source and community-driven. Contributions
+ are always welcome!
+
+
+
+
+
+
+ );
+}
diff --git a/components/footer.tsx b/components/footer.tsx
index 7fd6802..2baeb0c 100644
--- a/components/footer.tsx
+++ b/components/footer.tsx
@@ -163,6 +163,14 @@ export default function Footer() {
Contact
+
+
+ Creators
+
+