diff --git a/app/(public)/creators/page.tsx b/app/(public)/creators/page.tsx index 1a688a6..1d1173e 100644 --- a/app/(public)/creators/page.tsx +++ b/app/(public)/creators/page.tsx @@ -30,29 +30,30 @@ const teamMembers = [ email: "mailto:singhshivraj89969@gmail.com", }, icon: Code2, - isFounder: true, + badge: "Founder", }, { id: "nitin", - name: "Nitin Pandey", - role: "UI/UX Designer & Frontend Developer", + name: "Nitin Mohan", + role: "Co-Founder, UI/UX Designer & Full Stack 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/", + twitter: "https://x.com/nitinmohan18", portfolio: "https://nitinpandey-portfolio.vercel.app/", email: "mailto:mohannitin494@gmail.com", }, icon: Palette, - isFounder: false, + badge: "Co-Founder", }, { id: "ramoo", name: "Ramoo Kachhee", - role: "Frontend Developer", - bio: "Builds responsive user interfaces and implements frontend components for Hyper Learning.", + role: "Content Contributor", + bio: "Actively contributes to Hyper Learning by curating and uploading essential study materials, including PYQs, syllabuses, and question papers.", image: "https://avatars.githubusercontent.com/u/231412959?v=4", socials: { github: "https://github.com/RamuuXfree", @@ -60,8 +61,7 @@ const teamMembers = [ instagram: "https://www.instagram.com/frrr_ace/", email: "mailto:ramoo@hyperlearning.tech", }, - icon: Code2, - isFounder: false, + icon: GraduationCap, }, ]; @@ -94,23 +94,23 @@ export default function TeamPage() { {/* Hero */}
-
-
+
+
-
+
- + Meet the Team -

+

The People Behind
@@ -118,7 +118,7 @@ export default function TeamPage() {

-

+

A small team of dedicated individuals working together to make engineering education more accessible and effective through AI-powered learning. @@ -128,14 +128,14 @@ export default function TeamPage() {

{/* Team Grid */} -
+
{teamMembers.map((member) => { const Icon = member.icon; @@ -144,42 +144,48 @@ export default function TeamPage() { - {/* Founder Badge */} - {member.isFounder && ( -
- Founder + {/* Subtle top edge highlight */} +
+ + {/* Top-Right Surface Glow Orb */} +
+ + {/* Top-Right animated gradient background glow */} +
+ + {/* Premium Badge */} + {member.badge && ( +
+ + + + {member.badge}
)} - {/* Glow */} -
-
-
- {/* Avatar */} -
+
+
{member.name}
{/* Content */}
-

+

{member.name}

-

+

{member.role}

-

+

{member.bio}

@@ -190,7 +196,7 @@ export default function TeamPage() { href={member.socials.github} target="_blank" rel="noopener noreferrer" - className="rounded-lg p-2 text-muted-foreground transition-all duration-300 ease-out hover:-translate-y-2 hover:bg-blue-700 hover:text-white hover:shadow-lg" + className="rounded-lg p-2 text-muted-foreground transition-all duration-300 ease-out hover:-translate-y-2 hover:bg-white/10 hover:text-white hover:shadow-lg" aria-label="GitHub" > @@ -202,7 +208,7 @@ export default function TeamPage() { href={member.socials.linkedin} target="_blank" rel="noopener noreferrer" - className="rounded-lg p-2 text-muted-foreground transition-all duration-300 ease-out hover:-translate-y-2 hover:bg-blue-700 hover:text-white hover:shadow-lg" + className="rounded-lg p-2 text-muted-foreground transition-all duration-300 ease-out hover:-translate-y-2 hover:bg-[#0A66C2] hover:text-white hover:shadow-lg hover:shadow-[#0A66C2]/30" aria-label="LinkedIn" > @@ -214,7 +220,7 @@ export default function TeamPage() { href={member.socials.twitter} target="_blank" rel="noopener noreferrer" - className="rounded-lg p-2 text-muted-foreground transition-all duration-300 ease-out hover:-translate-y-2 hover:bg-blue-700 hover:text-white hover:shadow-lg" + className="rounded-lg p-2 text-muted-foreground transition-all duration-300 ease-out hover:-translate-y-2 hover:bg-black hover:text-white hover:shadow-lg hover:shadow-white/10" aria-label="X (Twitter)" > @@ -226,7 +232,7 @@ export default function TeamPage() { href={member.socials.instagram} target="_blank" rel="noopener noreferrer" - className="rounded-lg p-2 text-muted-foreground transition-all duration-300 ease-out hover:-translate-y-2 hover:bg-blue-700 hover:text-white hover:shadow-lg" + className="rounded-lg p-2 text-muted-foreground transition-all duration-300 ease-out hover:-translate-y-2 hover:bg-gradient-to-tr hover:from-[#f09433] hover:via-[#dc2743] hover:to-[#bc1888] hover:text-white hover:shadow-lg hover:shadow-[#E1306C]/30" aria-label="Instagram" > @@ -238,7 +244,7 @@ export default function TeamPage() { href={member.socials.portfolio} target="_blank" rel="noopener noreferrer" - className="rounded-lg p-2 text-muted-foreground transition-all duration-300 ease-out hover:-translate-y-2 hover:bg-blue-700 hover:text-white hover:shadow-lg" + className="rounded-lg p-2 text-muted-foreground transition-all duration-300 ease-out hover:-translate-y-2 hover:bg-[#10B981] hover:text-white hover:shadow-lg hover:shadow-[#10B981]/30" aria-label="Portfolio" > @@ -248,7 +254,7 @@ export default function TeamPage() { {member.socials.email && ( @@ -267,30 +273,31 @@ export default function TeamPage() { whileInView={{ opacity: 1, y: 0 }} transition={{ duration: 0.5, delay: 0.1 }} viewport={{ once: true }} - className="mt-16 rounded-3xl border border-border bg-card/40 p-8 text-center backdrop-blur-sm md:p-12" + className="mx-auto mt-16 max-w-3xl rounded-[24px] border border-border bg-card/40 p-8 text-center backdrop-blur-sm md:p-12" > -

+

Want to Join the Team?

-

+

Hyper Learning is open-source and community-driven. Contributions are always welcome!

-
+
- - View on GitHub +
+ + View on GitHub - + Contact Us
diff --git a/components/footer.tsx b/components/footer.tsx index 2baeb0c..d490fa8 100644 --- a/components/footer.tsx +++ b/components/footer.tsx @@ -4,215 +4,173 @@ import Image from "next/image"; export default function Footer() { return ( -