diff --git a/client/pages/Explore.tsx b/client/pages/Explore.tsx index 7e1abccf..b9a65cd3 100644 --- a/client/pages/Explore.tsx +++ b/client/pages/Explore.tsx @@ -28,6 +28,7 @@ export default function Explore() { title: "Game Development", description: "Studios and indie support", link: "/game-development", + tags: ["Studios", "Tools"], cardClass: "border-blue-500/40 bg-gradient-to-br from-blue-950/60 via-indigo-950/30 to-purple-900/40 text-blue-100 hover:border-blue-400/80 hover:shadow-[0_0_25px_rgba(59,130,246,0.35)]", titleClass: "text-blue-100", @@ -39,6 +40,7 @@ export default function Explore() { title: "Consulting", description: "Architecture & delivery", link: "/consulting", + tags: ["Architecture", "Delivery"], cardClass: "border-fuchsia-500/40 bg-gradient-to-br from-fuchsia-950/60 via-rose-950/30 to-purple-900/40 text-fuchsia-100 hover:border-fuchsia-400/80 hover:shadow-[0_0_25px_rgba(217,70,239,0.35)]", titleClass: "text-fuchsia-100", @@ -50,6 +52,7 @@ export default function Explore() { title: "Mentorship", description: "Programs and guidance", link: "/mentorship", + tags: ["Programs", "Guidance"], cardClass: "border-emerald-500/40 bg-gradient-to-br from-emerald-950/60 via-teal-950/30 to-blue-900/40 text-emerald-100 hover:border-emerald-400/80 hover:shadow-[0_0_25px_rgba(16,185,129,0.35)]", titleClass: "text-emerald-100", @@ -66,6 +69,7 @@ export default function Explore() { { title: "Documentation", description: "Guides and tutorials", + tags: ["Guides", "Tutorials"], cardClass: "border-cyan-400/40 bg-gradient-to-br from-cyan-950/50 via-sky-950/25 to-blue-900/30 text-cyan-100 hover:border-cyan-300/70 hover:shadow-[0_0_20px_rgba(34,211,238,0.3)]", titleClass: "text-cyan-100", @@ -90,6 +94,7 @@ export default function Explore() { { title: "Community", description: "News and discussions", + tags: ["Blog", "Hub"], cardClass: "border-orange-400/40 bg-gradient-to-br from-amber-950/50 via-orange-950/25 to-rose-900/30 text-orange-100 hover:border-orange-300/70 hover:shadow-[0_0_20px_rgba(249,115,22,0.3)]", titleClass: "text-orange-100", @@ -114,6 +119,7 @@ export default function Explore() { { title: "Company", description: "About and contact", + tags: ["About", "Contact"], cardClass: "border-indigo-400/40 bg-gradient-to-br from-indigo-950/50 via-blue-950/25 to-slate-900/30 text-indigo-100 hover:border-indigo-300/70 hover:shadow-[0_0_20px_rgba(99,102,241,0.3)]", titleClass: "text-indigo-100", @@ -187,13 +193,35 @@ export default function Explore() {

Explore services, programs, resources, and community

+ + {/* Quick Links */} +
+ {[ + { label: "Dashboard", href: "/dashboard" }, + { label: "Feed", href: "/feed" }, + { label: "Passport", href: "/passport/me" }, + { label: "Docs", href: "/docs" }, + { label: "Community", href: "/community" }, + ].map((q, i) => ( + + ))} +
- {serviceOfferings.map((offering) => ( + {serviceOfferings.map((offering, idx) => (
@@ -205,6 +233,15 @@ export default function Explore() { > {offering.description} + {offering.tags && ( +
+ {offering.tags.map((t: string) => ( + + {t} + + ))} +
+ )}
- {resourceOfferings.map((offering) => ( + {resourceOfferings.map((offering, idx) => (
@@ -265,6 +303,15 @@ export default function Explore() { > {offering.description} + {offering.tags && ( +
+ {offering.tags.map((t: string) => ( + + {t} + + ))} +
+ )}