@medialane/ui 0.5.4 → 0.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,94 @@
1
+ "use strict";
2
+ "use client";
3
+ var __create = Object.create;
4
+ var __defProp = Object.defineProperty;
5
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
6
+ var __getOwnPropNames = Object.getOwnPropertyNames;
7
+ var __getProtoOf = Object.getPrototypeOf;
8
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
9
+ var __export = (target, all) => {
10
+ for (var name in all)
11
+ __defProp(target, name, { get: all[name], enumerable: true });
12
+ };
13
+ var __copyProps = (to, from, except, desc) => {
14
+ if (from && typeof from === "object" || typeof from === "function") {
15
+ for (let key of __getOwnPropNames(from))
16
+ if (!__hasOwnProp.call(to, key) && key !== except)
17
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
18
+ }
19
+ return to;
20
+ };
21
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
22
+ // If the importer is in node compatibility mode or this is not an ESM
23
+ // file that has been converted to a CommonJS file using a Babel-
24
+ // compatible transform (i.e. "__esModule" has not been set), then set
25
+ // "default" to the CommonJS "module.exports" for node compatibility.
26
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
27
+ mod
28
+ ));
29
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
30
+ var portfolio_subnav_exports = {};
31
+ __export(portfolio_subnav_exports, {
32
+ PortfolioSubnav: () => PortfolioSubnav
33
+ });
34
+ module.exports = __toCommonJS(portfolio_subnav_exports);
35
+ var import_jsx_runtime = require("react/jsx-runtime");
36
+ var import_link = __toESM(require("next/link"), 1);
37
+ var import_cn = require("../utils/cn.js");
38
+ const BADGE_VARIANT_CLASS = {
39
+ destructive: "bg-destructive text-destructive-foreground",
40
+ primary: "bg-primary text-primary-foreground",
41
+ warning: "bg-amber-500 text-white"
42
+ };
43
+ function PortfolioSubnav({
44
+ groups,
45
+ pathname,
46
+ badgeCounts = {},
47
+ className
48
+ }) {
49
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
50
+ "nav",
51
+ {
52
+ className: (0, import_cn.cn)(
53
+ "overflow-x-auto scrollbar-hide -mx-4 px-4 sm:-mx-6 sm:px-6 lg:-mx-8 lg:px-8 border-b border-border/60",
54
+ className
55
+ ),
56
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", { className: "flex items-center min-w-max gap-0", children: groups.map((group, groupIndex) => /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("div", { className: "flex items-center", children: [
57
+ group.items.map((item) => {
58
+ const active = pathname === item.href || pathname.startsWith(item.href + "/");
59
+ const count = item.badge ? badgeCounts[item.badge.key] ?? 0 : 0;
60
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
61
+ import_link.default,
62
+ {
63
+ href: item.href,
64
+ className: (0, import_cn.cn)(
65
+ "relative flex items-center gap-1.5 px-3 py-2.5 text-sm whitespace-nowrap transition-colors shrink-0 border-b-2 min-h-10",
66
+ active ? "border-primary text-foreground font-medium" : "border-transparent text-muted-foreground hover:text-foreground"
67
+ ),
68
+ children: [
69
+ item.label,
70
+ item.badge && count > 0 && /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
71
+ "span",
72
+ {
73
+ className: (0, import_cn.cn)(
74
+ "h-4 min-w-4 rounded-full text-[10px] font-bold flex items-center justify-center px-1",
75
+ BADGE_VARIANT_CLASS[item.badge.variant ?? "primary"]
76
+ ),
77
+ children: count
78
+ }
79
+ )
80
+ ]
81
+ },
82
+ item.href
83
+ );
84
+ }),
85
+ groupIndex < groups.length - 1 && /* @__PURE__ */ (0, import_jsx_runtime.jsx)("span", { className: "w-px h-4 bg-border/40 mx-1 self-center shrink-0" })
86
+ ] }, group.label)) })
87
+ }
88
+ );
89
+ }
90
+ // Annotate the CommonJS export names for ESM import in node:
91
+ 0 && (module.exports = {
92
+ PortfolioSubnav
93
+ });
94
+ //# sourceMappingURL=portfolio-subnav.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/components/portfolio-subnav.tsx"],"sourcesContent":["\"use client\";\n\nimport Link from \"next/link\";\nimport { cn } from \"../utils/cn.js\";\n\nexport type PortfolioBadgeVariant = \"destructive\" | \"primary\" | \"warning\";\n\nexport interface PortfolioNavItem {\n label: string;\n href: string;\n /** Optional count badge. `key` indexes `badgeCounts`; `variant` sets color. */\n badge?: { key: string; variant?: PortfolioBadgeVariant };\n}\n\nexport interface PortfolioNavGroup {\n label: string;\n items: PortfolioNavItem[];\n}\n\nexport interface PortfolioSubnavProps {\n groups: PortfolioNavGroup[];\n /** Current pathname — caller passes `usePathname()`. */\n pathname: string;\n /** Badge counts keyed by `item.badge.key`. A badge renders only when > 0. */\n badgeCounts?: Record<string, number>;\n className?: string;\n}\n\nconst BADGE_VARIANT_CLASS: Record<PortfolioBadgeVariant, string> = {\n destructive: \"bg-destructive text-destructive-foreground\",\n primary: \"bg-primary text-primary-foreground\",\n warning: \"bg-amber-500 text-white\",\n};\n\nexport function PortfolioSubnav({\n groups,\n pathname,\n badgeCounts = {},\n className,\n}: PortfolioSubnavProps) {\n return (\n <nav\n className={cn(\n \"overflow-x-auto scrollbar-hide -mx-4 px-4 sm:-mx-6 sm:px-6 lg:-mx-8 lg:px-8 border-b border-border/60\",\n className,\n )}\n >\n <div className=\"flex items-center min-w-max gap-0\">\n {groups.map((group, groupIndex) => (\n <div key={group.label} className=\"flex items-center\">\n {group.items.map((item) => {\n const active =\n pathname === item.href || pathname.startsWith(item.href + \"/\");\n const count = item.badge ? badgeCounts[item.badge.key] ?? 0 : 0;\n return (\n <Link\n key={item.href}\n href={item.href}\n className={cn(\n \"relative flex items-center gap-1.5 px-3 py-2.5 text-sm whitespace-nowrap transition-colors shrink-0 border-b-2 min-h-10\",\n active\n ? \"border-primary text-foreground font-medium\"\n : \"border-transparent text-muted-foreground hover:text-foreground\",\n )}\n >\n {item.label}\n {item.badge && count > 0 && (\n <span\n className={cn(\n \"h-4 min-w-4 rounded-full text-[10px] font-bold flex items-center justify-center px-1\",\n BADGE_VARIANT_CLASS[item.badge.variant ?? \"primary\"],\n )}\n >\n {count}\n </span>\n )}\n </Link>\n );\n })}\n {groupIndex < groups.length - 1 && (\n <span className=\"w-px h-4 bg-border/40 mx-1 self-center shrink-0\" />\n )}\n </div>\n ))}\n </div>\n </nav>\n );\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAuDgB;AArDhB,kBAAiB;AACjB,gBAAmB;AAyBnB,MAAM,sBAA6D;AAAA,EACjE,aAAa;AAAA,EACb,SAAS;AAAA,EACT,SAAS;AACX;AAEO,SAAS,gBAAgB;AAAA,EAC9B;AAAA,EACA;AAAA,EACA,cAAc,CAAC;AAAA,EACf;AACF,GAAyB;AACvB,SACE;AAAA,IAAC;AAAA;AAAA,MACC,eAAW;AAAA,QACT;AAAA,QACA;AAAA,MACF;AAAA,MAEA,sDAAC,SAAI,WAAU,qCACZ,iBAAO,IAAI,CAAC,OAAO,eAClB,6CAAC,SAAsB,WAAU,qBAC9B;AAAA,cAAM,MAAM,IAAI,CAAC,SAAS;AACzB,gBAAM,SACJ,aAAa,KAAK,QAAQ,SAAS,WAAW,KAAK,OAAO,GAAG;AAC/D,gBAAM,QAAQ,KAAK,QAAQ,YAAY,KAAK,MAAM,GAAG,KAAK,IAAI;AAC9D,iBACE;AAAA,YAAC,YAAAA;AAAA,YAAA;AAAA,cAEC,MAAM,KAAK;AAAA,cACX,eAAW;AAAA,gBACT;AAAA,gBACA,SACI,+CACA;AAAA,cACN;AAAA,cAEC;AAAA,qBAAK;AAAA,gBACL,KAAK,SAAS,QAAQ,KACrB;AAAA,kBAAC;AAAA;AAAA,oBACC,eAAW;AAAA,sBACT;AAAA,sBACA,oBAAoB,KAAK,MAAM,WAAW,SAAS;AAAA,oBACrD;AAAA,oBAEC;AAAA;AAAA,gBACH;AAAA;AAAA;AAAA,YAlBG,KAAK;AAAA,UAoBZ;AAAA,QAEJ,CAAC;AAAA,QACA,aAAa,OAAO,SAAS,KAC5B,4CAAC,UAAK,WAAU,mDAAkD;AAAA,WA/B5D,MAAM,KAiChB,CACD,GACH;AAAA;AAAA,EACF;AAEJ;","names":["Link"]}
@@ -0,0 +1,27 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+
3
+ type PortfolioBadgeVariant = "destructive" | "primary" | "warning";
4
+ interface PortfolioNavItem {
5
+ label: string;
6
+ href: string;
7
+ /** Optional count badge. `key` indexes `badgeCounts`; `variant` sets color. */
8
+ badge?: {
9
+ key: string;
10
+ variant?: PortfolioBadgeVariant;
11
+ };
12
+ }
13
+ interface PortfolioNavGroup {
14
+ label: string;
15
+ items: PortfolioNavItem[];
16
+ }
17
+ interface PortfolioSubnavProps {
18
+ groups: PortfolioNavGroup[];
19
+ /** Current pathname — caller passes `usePathname()`. */
20
+ pathname: string;
21
+ /** Badge counts keyed by `item.badge.key`. A badge renders only when > 0. */
22
+ badgeCounts?: Record<string, number>;
23
+ className?: string;
24
+ }
25
+ declare function PortfolioSubnav({ groups, pathname, badgeCounts, className, }: PortfolioSubnavProps): react_jsx_runtime.JSX.Element;
26
+
27
+ export { type PortfolioBadgeVariant, type PortfolioNavGroup, type PortfolioNavItem, PortfolioSubnav, type PortfolioSubnavProps };
@@ -0,0 +1,27 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+
3
+ type PortfolioBadgeVariant = "destructive" | "primary" | "warning";
4
+ interface PortfolioNavItem {
5
+ label: string;
6
+ href: string;
7
+ /** Optional count badge. `key` indexes `badgeCounts`; `variant` sets color. */
8
+ badge?: {
9
+ key: string;
10
+ variant?: PortfolioBadgeVariant;
11
+ };
12
+ }
13
+ interface PortfolioNavGroup {
14
+ label: string;
15
+ items: PortfolioNavItem[];
16
+ }
17
+ interface PortfolioSubnavProps {
18
+ groups: PortfolioNavGroup[];
19
+ /** Current pathname — caller passes `usePathname()`. */
20
+ pathname: string;
21
+ /** Badge counts keyed by `item.badge.key`. A badge renders only when > 0. */
22
+ badgeCounts?: Record<string, number>;
23
+ className?: string;
24
+ }
25
+ declare function PortfolioSubnav({ groups, pathname, badgeCounts, className, }: PortfolioSubnavProps): react_jsx_runtime.JSX.Element;
26
+
27
+ export { type PortfolioBadgeVariant, type PortfolioNavGroup, type PortfolioNavItem, PortfolioSubnav, type PortfolioSubnavProps };
@@ -0,0 +1,60 @@
1
+ "use client";
2
+ import { jsx, jsxs } from "react/jsx-runtime";
3
+ import Link from "next/link";
4
+ import { cn } from "../utils/cn.js";
5
+ const BADGE_VARIANT_CLASS = {
6
+ destructive: "bg-destructive text-destructive-foreground",
7
+ primary: "bg-primary text-primary-foreground",
8
+ warning: "bg-amber-500 text-white"
9
+ };
10
+ function PortfolioSubnav({
11
+ groups,
12
+ pathname,
13
+ badgeCounts = {},
14
+ className
15
+ }) {
16
+ return /* @__PURE__ */ jsx(
17
+ "nav",
18
+ {
19
+ className: cn(
20
+ "overflow-x-auto scrollbar-hide -mx-4 px-4 sm:-mx-6 sm:px-6 lg:-mx-8 lg:px-8 border-b border-border/60",
21
+ className
22
+ ),
23
+ children: /* @__PURE__ */ jsx("div", { className: "flex items-center min-w-max gap-0", children: groups.map((group, groupIndex) => /* @__PURE__ */ jsxs("div", { className: "flex items-center", children: [
24
+ group.items.map((item) => {
25
+ const active = pathname === item.href || pathname.startsWith(item.href + "/");
26
+ const count = item.badge ? badgeCounts[item.badge.key] ?? 0 : 0;
27
+ return /* @__PURE__ */ jsxs(
28
+ Link,
29
+ {
30
+ href: item.href,
31
+ className: cn(
32
+ "relative flex items-center gap-1.5 px-3 py-2.5 text-sm whitespace-nowrap transition-colors shrink-0 border-b-2 min-h-10",
33
+ active ? "border-primary text-foreground font-medium" : "border-transparent text-muted-foreground hover:text-foreground"
34
+ ),
35
+ children: [
36
+ item.label,
37
+ item.badge && count > 0 && /* @__PURE__ */ jsx(
38
+ "span",
39
+ {
40
+ className: cn(
41
+ "h-4 min-w-4 rounded-full text-[10px] font-bold flex items-center justify-center px-1",
42
+ BADGE_VARIANT_CLASS[item.badge.variant ?? "primary"]
43
+ ),
44
+ children: count
45
+ }
46
+ )
47
+ ]
48
+ },
49
+ item.href
50
+ );
51
+ }),
52
+ groupIndex < groups.length - 1 && /* @__PURE__ */ jsx("span", { className: "w-px h-4 bg-border/40 mx-1 self-center shrink-0" })
53
+ ] }, group.label)) })
54
+ }
55
+ );
56
+ }
57
+ export {
58
+ PortfolioSubnav
59
+ };
60
+ //# sourceMappingURL=portfolio-subnav.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/components/portfolio-subnav.tsx"],"sourcesContent":["\"use client\";\n\nimport Link from \"next/link\";\nimport { cn } from \"../utils/cn.js\";\n\nexport type PortfolioBadgeVariant = \"destructive\" | \"primary\" | \"warning\";\n\nexport interface PortfolioNavItem {\n label: string;\n href: string;\n /** Optional count badge. `key` indexes `badgeCounts`; `variant` sets color. */\n badge?: { key: string; variant?: PortfolioBadgeVariant };\n}\n\nexport interface PortfolioNavGroup {\n label: string;\n items: PortfolioNavItem[];\n}\n\nexport interface PortfolioSubnavProps {\n groups: PortfolioNavGroup[];\n /** Current pathname — caller passes `usePathname()`. */\n pathname: string;\n /** Badge counts keyed by `item.badge.key`. A badge renders only when > 0. */\n badgeCounts?: Record<string, number>;\n className?: string;\n}\n\nconst BADGE_VARIANT_CLASS: Record<PortfolioBadgeVariant, string> = {\n destructive: \"bg-destructive text-destructive-foreground\",\n primary: \"bg-primary text-primary-foreground\",\n warning: \"bg-amber-500 text-white\",\n};\n\nexport function PortfolioSubnav({\n groups,\n pathname,\n badgeCounts = {},\n className,\n}: PortfolioSubnavProps) {\n return (\n <nav\n className={cn(\n \"overflow-x-auto scrollbar-hide -mx-4 px-4 sm:-mx-6 sm:px-6 lg:-mx-8 lg:px-8 border-b border-border/60\",\n className,\n )}\n >\n <div className=\"flex items-center min-w-max gap-0\">\n {groups.map((group, groupIndex) => (\n <div key={group.label} className=\"flex items-center\">\n {group.items.map((item) => {\n const active =\n pathname === item.href || pathname.startsWith(item.href + \"/\");\n const count = item.badge ? badgeCounts[item.badge.key] ?? 0 : 0;\n return (\n <Link\n key={item.href}\n href={item.href}\n className={cn(\n \"relative flex items-center gap-1.5 px-3 py-2.5 text-sm whitespace-nowrap transition-colors shrink-0 border-b-2 min-h-10\",\n active\n ? \"border-primary text-foreground font-medium\"\n : \"border-transparent text-muted-foreground hover:text-foreground\",\n )}\n >\n {item.label}\n {item.badge && count > 0 && (\n <span\n className={cn(\n \"h-4 min-w-4 rounded-full text-[10px] font-bold flex items-center justify-center px-1\",\n BADGE_VARIANT_CLASS[item.badge.variant ?? \"primary\"],\n )}\n >\n {count}\n </span>\n )}\n </Link>\n );\n })}\n {groupIndex < groups.length - 1 && (\n <span className=\"w-px h-4 bg-border/40 mx-1 self-center shrink-0\" />\n )}\n </div>\n ))}\n </div>\n </nav>\n );\n}\n"],"mappings":";AAuDgB,SAYI,KAZJ;AArDhB,OAAO,UAAU;AACjB,SAAS,UAAU;AAyBnB,MAAM,sBAA6D;AAAA,EACjE,aAAa;AAAA,EACb,SAAS;AAAA,EACT,SAAS;AACX;AAEO,SAAS,gBAAgB;AAAA,EAC9B;AAAA,EACA;AAAA,EACA,cAAc,CAAC;AAAA,EACf;AACF,GAAyB;AACvB,SACE;AAAA,IAAC;AAAA;AAAA,MACC,WAAW;AAAA,QACT;AAAA,QACA;AAAA,MACF;AAAA,MAEA,8BAAC,SAAI,WAAU,qCACZ,iBAAO,IAAI,CAAC,OAAO,eAClB,qBAAC,SAAsB,WAAU,qBAC9B;AAAA,cAAM,MAAM,IAAI,CAAC,SAAS;AACzB,gBAAM,SACJ,aAAa,KAAK,QAAQ,SAAS,WAAW,KAAK,OAAO,GAAG;AAC/D,gBAAM,QAAQ,KAAK,QAAQ,YAAY,KAAK,MAAM,GAAG,KAAK,IAAI;AAC9D,iBACE;AAAA,YAAC;AAAA;AAAA,cAEC,MAAM,KAAK;AAAA,cACX,WAAW;AAAA,gBACT;AAAA,gBACA,SACI,+CACA;AAAA,cACN;AAAA,cAEC;AAAA,qBAAK;AAAA,gBACL,KAAK,SAAS,QAAQ,KACrB;AAAA,kBAAC;AAAA;AAAA,oBACC,WAAW;AAAA,sBACT;AAAA,sBACA,oBAAoB,KAAK,MAAM,WAAW,SAAS;AAAA,oBACrD;AAAA,oBAEC;AAAA;AAAA,gBACH;AAAA;AAAA;AAAA,YAlBG,KAAK;AAAA,UAoBZ;AAAA,QAEJ,CAAC;AAAA,QACA,aAAa,OAAO,SAAS,KAC5B,oBAAC,UAAK,WAAU,mDAAkD;AAAA,WA/B5D,MAAM,KAiChB,CACD,GACH;AAAA;AAAA,EACF;AAEJ;","names":[]}
@@ -18,10 +18,55 @@ var __copyProps = (to, from, except, desc) => {
18
18
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
19
  var launchpad_services_exports = {};
20
20
  __export(launchpad_services_exports, {
21
- LAUNCHPAD_SERVICE_DEFINITIONS: () => LAUNCHPAD_SERVICE_DEFINITIONS
21
+ LAUNCHPAD_SERVICE_DEFINITIONS: () => LAUNCHPAD_SERVICE_DEFINITIONS,
22
+ LAUNCHPAD_SERVICE_GROUPS: () => LAUNCHPAD_SERVICE_GROUPS
22
23
  });
23
24
  module.exports = __toCommonJS(launchpad_services_exports);
24
25
  var import_lucide_react = require("lucide-react");
26
+ const LAUNCHPAD_SERVICE_GROUPS = [
27
+ {
28
+ key: "single-edition",
29
+ title: "Single Edition NFTs",
30
+ badge: "ERC-721",
31
+ tagline: "Publish one-of-one works and group them under your own brand."
32
+ },
33
+ {
34
+ key: "limited-editions",
35
+ title: "Limited Editions",
36
+ badge: "ERC-1155",
37
+ tagline: "Release your work in numbered multiples collectors can buy and trade."
38
+ },
39
+ {
40
+ key: "creator-coins",
41
+ title: "Creator Coins",
42
+ tagline: "Launch your own coin with a public liquidity pool you control."
43
+ },
44
+ {
45
+ key: "collection-drop",
46
+ title: "Collection Drop",
47
+ tagline: "Timed releases with mint windows your community can race to collect."
48
+ },
49
+ {
50
+ key: "pop-protocol",
51
+ title: "POP Protocol",
52
+ tagline: "Credentials for your events and community \u2014 permanent, non-transferable proof."
53
+ },
54
+ {
55
+ key: "licensing-remix",
56
+ title: "Licensing & Remix",
57
+ tagline: "Licensed derivatives with attribution and royalties flowing back to you."
58
+ },
59
+ {
60
+ key: "claims",
61
+ title: "Claims",
62
+ tagline: "Free wins that build your creator profile and bring your existing work onchain."
63
+ },
64
+ {
65
+ key: "coming-soon",
66
+ title: "Coming soon",
67
+ tagline: "More monetization services on the way."
68
+ }
69
+ ];
25
70
  const LAUNCHPAD_SERVICE_DEFINITIONS = [
26
71
  // ── Create ────────────────────────────────────────────────────────────────
27
72
  {
@@ -37,7 +82,8 @@ const LAUNCHPAD_SERVICE_DEFINITIONS = [
37
82
  buttonColor: "bg-brand-blue hover:bg-brand-blue/90",
38
83
  badge: "Create",
39
84
  status: "live",
40
- category: "create"
85
+ category: "create",
86
+ group: "single-edition"
41
87
  },
42
88
  {
43
89
  key: "create-collection",
@@ -52,7 +98,8 @@ const LAUNCHPAD_SERVICE_DEFINITIONS = [
52
98
  buttonColor: "bg-brand-purple hover:bg-brand-purple/90",
53
99
  badge: "Create",
54
100
  status: "live",
55
- category: "create"
101
+ category: "create",
102
+ group: "single-edition"
56
103
  },
57
104
  {
58
105
  key: "ip-collection-1155",
@@ -67,7 +114,8 @@ const LAUNCHPAD_SERVICE_DEFINITIONS = [
67
114
  buttonColor: "bg-violet-600 hover:bg-violet-700",
68
115
  badge: "Create",
69
116
  status: "live",
70
- category: "create"
117
+ category: "create",
118
+ group: "limited-editions"
71
119
  },
72
120
  {
73
121
  key: "mint-editions",
@@ -82,7 +130,8 @@ const LAUNCHPAD_SERVICE_DEFINITIONS = [
82
130
  buttonColor: "bg-fuchsia-600 hover:bg-fuchsia-700",
83
131
  badge: "Create",
84
132
  status: "live",
85
- category: "create"
133
+ category: "create",
134
+ group: "limited-editions"
86
135
  },
87
136
  {
88
137
  key: "remix-asset",
@@ -97,7 +146,8 @@ const LAUNCHPAD_SERVICE_DEFINITIONS = [
97
146
  buttonColor: "bg-brand-rose hover:bg-brand-rose/90",
98
147
  badge: "Create",
99
148
  status: "live",
100
- category: "create"
149
+ category: "create",
150
+ group: "licensing-remix"
101
151
  },
102
152
  // ── Launch ────────────────────────────────────────────────────────────────
103
153
  {
@@ -114,7 +164,8 @@ const LAUNCHPAD_SERVICE_DEFINITIONS = [
114
164
  badge: "Launch",
115
165
  browseLinkLabel: "Browse events",
116
166
  status: "live",
117
- category: "launch"
167
+ category: "launch",
168
+ group: "pop-protocol"
118
169
  },
119
170
  {
120
171
  key: "collection-drop",
@@ -130,7 +181,8 @@ const LAUNCHPAD_SERVICE_DEFINITIONS = [
130
181
  badge: "Launch",
131
182
  browseLinkLabel: "Browse drops",
132
183
  status: "live",
133
- category: "launch"
184
+ category: "launch",
185
+ group: "collection-drop"
134
186
  },
135
187
  {
136
188
  key: "ip-tickets",
@@ -144,7 +196,8 @@ const LAUNCHPAD_SERVICE_DEFINITIONS = [
144
196
  iconColor: "text-teal-500",
145
197
  badge: "Soon",
146
198
  status: "building",
147
- category: "launch"
199
+ category: "launch",
200
+ group: "coming-soon"
148
201
  },
149
202
  {
150
203
  key: "membership",
@@ -158,7 +211,8 @@ const LAUNCHPAD_SERVICE_DEFINITIONS = [
158
211
  iconColor: "text-indigo-400",
159
212
  badge: "Soon",
160
213
  status: "soon",
161
- category: "launch"
214
+ category: "launch",
215
+ group: "coming-soon"
162
216
  },
163
217
  // ── Monetize ─────────────────────────────────────────────────────────────
164
218
  {
@@ -173,7 +227,8 @@ const LAUNCHPAD_SERVICE_DEFINITIONS = [
173
227
  iconColor: "text-sky-400",
174
228
  badge: "Soon",
175
229
  status: "soon",
176
- category: "monetize"
230
+ category: "monetize",
231
+ group: "coming-soon"
177
232
  },
178
233
  {
179
234
  key: "ip-coins",
@@ -187,25 +242,78 @@ const LAUNCHPAD_SERVICE_DEFINITIONS = [
187
242
  iconColor: "text-amber-400",
188
243
  badge: "Soon",
189
244
  status: "soon",
190
- category: "monetize"
245
+ category: "monetize",
246
+ group: "coming-soon"
191
247
  },
192
248
  {
193
249
  key: "creator-coins",
194
- title: "Creator Coins",
195
- subtitle: "Personal social token for fans",
196
- description: "Launch a social token tied to your creative career. Let fans invest directly in your work \u2014 full economic alignment between creator and community.",
197
- features: ["Personal social token", "Fan investment", "Creator-community alignment"],
250
+ title: "Creator Coin",
251
+ subtitle: "Your own coin, your liquidity",
252
+ description: "Launch a standard ERC-20 coin tied to your creative work, paired with a public Ekubo liquidity pool. You set the supply and allocation \u2014 and you stay in control of the liquidity.",
253
+ features: ["Standard ERC-20", "Public Ekubo pool", "You control the liquidity"],
198
254
  icon: import_lucide_react.TrendingUp,
199
255
  gradient: "from-pink-500/6 via-rose-400/2 to-transparent",
200
- borderColor: "border-pink-500/10",
256
+ borderColor: "border-pink-500/20",
201
257
  iconColor: "text-pink-400",
258
+ buttonColor: "bg-brand-rose hover:bg-brand-rose/90",
202
259
  badge: "Soon",
203
260
  status: "soon",
204
- category: "monetize"
261
+ category: "monetize",
262
+ group: "creator-coins"
263
+ },
264
+ // ── Claims ────────────────────────────────────────────────────────────────
265
+ {
266
+ key: "claim-memecoin",
267
+ title: "Claim Memecoin",
268
+ subtitle: "Bring your Starknet coin to Medialane",
269
+ description: "Already launched a coin on Starknet (unrug or partner)? Claim it to add it to Medialane \u2014 reviewed by our team, then live on the Coins page and your profile.",
270
+ features: ["unrug & partner coins", "Team reviewed", "Lists on /coins"],
271
+ icon: import_lucide_react.Coins,
272
+ gradient: "from-orange-500/10 via-amber-400/4 to-transparent",
273
+ borderColor: "border-orange-500/20",
274
+ iconColor: "text-orange-500",
275
+ buttonColor: "bg-orange-600 hover:bg-orange-700",
276
+ badge: "Claim",
277
+ status: "soon",
278
+ category: "monetize",
279
+ group: "creator-coins"
280
+ },
281
+ {
282
+ key: "claim-username",
283
+ title: "Claim Username",
284
+ subtitle: "Reserve your creator page URL",
285
+ description: "Claim your unique username and get a shareable creator page \u2014 your public portfolio at a clean, memorable URL. Free, and yours.",
286
+ features: ["Free claim", "Shareable creator page", "Your public portfolio"],
287
+ icon: import_lucide_react.AtSign,
288
+ gradient: "from-violet-500/10 via-purple-400/4 to-transparent",
289
+ borderColor: "border-violet-500/20",
290
+ iconColor: "text-violet-500",
291
+ buttonColor: "bg-brand-purple hover:bg-brand-purple/90",
292
+ badge: "Claim",
293
+ status: "live",
294
+ category: "create",
295
+ group: "claims"
296
+ },
297
+ {
298
+ key: "claim-collection",
299
+ title: "Claim Collection",
300
+ subtitle: "Import an existing Starknet collection",
301
+ description: "Already deployed an ERC-721 collection on Starknet? Claim it to link it to your Medialane profile and give it a branded collection page.",
302
+ features: ["Import existing ERC-721", "Linked to your profile", "Branded collection page"],
303
+ icon: import_lucide_react.FolderInput,
304
+ gradient: "from-blue-500/10 via-sky-400/4 to-transparent",
305
+ borderColor: "border-blue-500/20",
306
+ iconColor: "text-blue-500",
307
+ buttonColor: "bg-brand-blue hover:bg-brand-blue/90",
308
+ badge: "Claim",
309
+ status: "live",
310
+ category: "create",
311
+ group: "claims"
205
312
  }
206
313
  ];
207
314
  // Annotate the CommonJS export names for ESM import in node:
208
315
  0 && (module.exports = {
209
- LAUNCHPAD_SERVICE_DEFINITIONS
316
+ LAUNCHPAD_SERVICE_DEFINITIONS,
317
+ LAUNCHPAD_SERVICE_GROUPS
210
318
  });
211
319
  //# sourceMappingURL=launchpad-services.cjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/data/launchpad-services.ts"],"sourcesContent":["import type { LucideIcon } from \"lucide-react\";\nimport {\n ImagePlus, Layers, GitBranch,\n Award, Package, PlusCircle,\n Ticket, Users,\n RefreshCw, Coins, TrendingUp,\n} from \"lucide-react\";\n\nexport type ServiceStatus = \"live\" | \"building\" | \"soon\";\nexport type ServiceCategory = \"create\" | \"launch\" | \"monetize\";\n\nexport interface ServiceDefinition {\n key: string;\n title: string;\n subtitle: string;\n description: string;\n features: string[];\n icon: LucideIcon;\n gradient: string;\n borderColor: string;\n iconColor: string;\n buttonColor?: string;\n badge: string;\n status: ServiceStatus;\n category: ServiceCategory;\n /** Secondary browse link label — injected app adds the href */\n browseLinkLabel?: string;\n}\n\nexport const LAUNCHPAD_SERVICE_DEFINITIONS: ServiceDefinition[] = [\n // ── Create ────────────────────────────────────────────────────────────────\n {\n key: \"mint-ip-asset\",\n title: \"Mint IP NFT\",\n subtitle: \"Publish any creative work on Starknet\",\n description:\n \"Turn any photo, video, or audio file into a programmable IP NFT. Gasless, permanent, and immediately tradeable on Medialane.\",\n features: [\"Gasless via ChipiPay\", \"IPFS metadata\", \"Programmable licensing\"],\n icon: ImagePlus,\n gradient: \"from-blue-500/10 via-sky-400/4 to-transparent\",\n borderColor: \"border-blue-500/20\",\n iconColor: \"text-blue-500\",\n buttonColor: \"bg-brand-blue hover:bg-brand-blue/90\",\n badge: \"Create\",\n status: \"live\",\n category: \"create\",\n },\n {\n key: \"create-collection\",\n title: \"Create Collection\",\n subtitle: \"Group your NFTs under a shared identity\",\n description:\n \"Deploy a branded ERC-721 collection with its own page, metadata, and on-chain identity — ready to populate with assets at any time.\",\n features: [\"Factory-deployed ERC-721\", \"Branded collection page\", \"Add assets at any time\"],\n icon: Layers,\n gradient: \"from-violet-500/10 via-purple-400/4 to-transparent\",\n borderColor: \"border-violet-500/20\",\n iconColor: \"text-violet-500\",\n buttonColor: \"bg-brand-purple hover:bg-brand-purple/90\",\n badge: \"Create\",\n status: \"live\",\n category: \"create\",\n },\n {\n key: \"ip-collection-1155\",\n title: \"Edition Collection\",\n subtitle: \"Deploy a contract for multi-copy NFT releases\",\n description:\n \"Launch a collection for music tracks, art prints, or any IP you want to release in multiples. Each edition token is numbered and tradeable on Medialane.\",\n features: [\"Multi-edition ERC-1155\", \"Immutable provenance\", \"Tradeable on Medialane\"],\n icon: Layers,\n gradient: \"from-violet-500/10 via-purple-400/4 to-transparent\",\n borderColor: \"border-violet-500/20\",\n iconColor: \"text-violet-500\",\n buttonColor: \"bg-violet-600 hover:bg-violet-700\",\n badge: \"Create\",\n status: \"live\",\n category: \"create\",\n },\n {\n key: \"mint-editions\",\n title: \"Mint NFT Editions\",\n subtitle: \"Add new editions to an existing collection\",\n description:\n \"Select one of your Edition Collection contracts and mint new token editions into it — set supply, upload artwork, and release to collectors.\",\n features: [\"Choose any edition collection\", \"Set edition supply\", \"IPFS metadata\"],\n icon: PlusCircle,\n gradient: \"from-fuchsia-500/10 via-violet-400/4 to-transparent\",\n borderColor: \"border-fuchsia-500/20\",\n iconColor: \"text-fuchsia-500\",\n buttonColor: \"bg-fuchsia-600 hover:bg-fuchsia-700\",\n badge: \"Create\",\n status: \"live\",\n category: \"create\",\n },\n {\n key: \"remix-asset\",\n title: \"Remix Asset\",\n subtitle: \"Derivative works with on-chain attribution\",\n description:\n \"Create a licensed derivative of any IP asset with full provenance and attribution flowing back to the original creator.\",\n features: [\"On-chain attribution\", \"License-enforced at mint\", \"Royalties to original creator\"],\n icon: GitBranch,\n gradient: \"from-rose-500/10 via-pink-400/4 to-transparent\",\n borderColor: \"border-rose-500/20\",\n iconColor: \"text-rose-500\",\n buttonColor: \"bg-brand-rose hover:bg-brand-rose/90\",\n badge: \"Create\",\n status: \"live\",\n category: \"create\",\n },\n\n // ── Launch ────────────────────────────────────────────────────────────────\n {\n key: \"pop-protocol\",\n title: \"POP Protocol\",\n subtitle: \"Proof-of-participation for events & communities\",\n description:\n \"Give every attendee proof they were there. Issue soulbound credentials to your community — one non-transferable badge per wallet, permanently on-chain. Works for bootcamps, hackathons, and conferences.\",\n features: [\"Soulbound · non-transferable\", \"One credential per wallet\", \"Optional allowlist gating\"],\n icon: Award,\n gradient: \"from-emerald-500/10 via-green-400/4 to-transparent\",\n borderColor: \"border-emerald-500/20\",\n iconColor: \"text-emerald-500\",\n buttonColor: \"bg-green-600 hover:bg-green-700\",\n badge: \"Launch\",\n browseLinkLabel: \"Browse events\",\n status: \"live\",\n category: \"launch\",\n },\n {\n key: \"collection-drop\",\n title: \"Collection Drop\",\n subtitle: \"Limited-edition timed releases\",\n description:\n \"Launch a fixed-supply ERC-721 drop with a defined mint window and per-wallet limit. Set your open date and let your community race to collect.\",\n features: [\"Fixed supply cap\", \"Timed mint window\", \"Free or paid mint\"],\n icon: Package,\n gradient: \"from-orange-500/10 via-amber-400/4 to-transparent\",\n borderColor: \"border-orange-500/20\",\n iconColor: \"text-orange-500\",\n buttonColor: \"bg-orange-600 hover:bg-orange-700\",\n badge: \"Launch\",\n browseLinkLabel: \"Browse drops\",\n status: \"live\",\n category: \"launch\",\n },\n {\n key: \"ip-tickets\",\n title: \"IP Tickets\",\n subtitle: \"Gate real-world experiences with NFTs\",\n description:\n \"Distribute tickets for concerts, workshops, and events. Each ticket is verifiable on-chain proof of attendance.\",\n features: [\"NFT-based event gating\", \"Proof of attendance\", \"Transferable or soulbound\"],\n icon: Ticket,\n gradient: \"from-teal-500/7 via-cyan-400/3 to-transparent\",\n borderColor: \"border-teal-500/15\",\n iconColor: \"text-teal-500\",\n badge: \"Soon\",\n status: \"building\",\n category: \"launch\",\n },\n {\n key: \"membership\",\n title: \"Membership\",\n subtitle: \"Token-gated access passes\",\n description:\n \"Create tiered membership passes that unlock exclusive content, private communities, and experiences for your most loyal fans.\",\n features: [\"Token-gated content\", \"Tiered access levels\", \"Community alignment\"],\n icon: Users,\n gradient: \"from-indigo-500/6 via-violet-400/2 to-transparent\",\n borderColor: \"border-indigo-500/10\",\n iconColor: \"text-indigo-400\",\n badge: \"Soon\",\n status: \"soon\",\n category: \"launch\",\n },\n\n // ── Monetize ─────────────────────────────────────────────────────────────\n {\n key: \"subscriptions\",\n title: \"Subscriptions\",\n subtitle: \"Recurring on-chain revenue\",\n description:\n \"Monthly licensing, creator support tiers, and access passes — all auto-renewed without intermediaries.\",\n features: [\"Recurring revenue\", \"Auto-renewal protocol\", \"No middlemen\"],\n icon: RefreshCw,\n gradient: \"from-sky-500/6 via-blue-400/2 to-transparent\",\n borderColor: \"border-sky-500/10\",\n iconColor: \"text-sky-400\",\n badge: \"Soon\",\n status: \"soon\",\n category: \"monetize\",\n },\n {\n key: \"ip-coins\",\n title: \"IP Coins\",\n subtitle: \"Fractional ownership of intellectual property\",\n description:\n \"Tokenize your IP catalog as fungible tokens. Enable fractional ownership and liquid markets around your creative work.\",\n features: [\"Fungible IP tokens\", \"Fractional ownership\", \"Liquid secondary markets\"],\n icon: Coins,\n gradient: \"from-amber-500/6 via-yellow-400/2 to-transparent\",\n borderColor: \"border-amber-500/10\",\n iconColor: \"text-amber-400\",\n badge: \"Soon\",\n status: \"soon\",\n category: \"monetize\",\n },\n {\n key: \"creator-coins\",\n title: \"Creator Coins\",\n subtitle: \"Personal social token for fans\",\n description:\n \"Launch a social token tied to your creative career. Let fans invest directly in your work — full economic alignment between creator and community.\",\n features: [\"Personal social token\", \"Fan investment\", \"Creator-community alignment\"],\n icon: TrendingUp,\n gradient: \"from-pink-500/6 via-rose-400/2 to-transparent\",\n borderColor: \"border-pink-500/10\",\n iconColor: \"text-pink-400\",\n badge: \"Soon\",\n status: \"soon\",\n category: \"monetize\",\n },\n];\n"],"mappings":"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","names":[]}
1
+ {"version":3,"sources":["../../src/data/launchpad-services.ts"],"sourcesContent":["import type { LucideIcon } from \"lucide-react\";\nimport {\n ImagePlus, Layers, GitBranch,\n Award, Package, PlusCircle,\n Ticket, Users,\n RefreshCw, Coins, TrendingUp,\n AtSign, FolderInput,\n} from \"lucide-react\";\n\nexport type ServiceStatus = \"live\" | \"building\" | \"soon\";\nexport type ServiceCategory = \"create\" | \"launch\" | \"monetize\";\n\nexport type ServiceGroup =\n | \"single-edition\"\n | \"limited-editions\"\n | \"creator-coins\"\n | \"collection-drop\"\n | \"pop-protocol\"\n | \"licensing-remix\"\n | \"claims\"\n | \"coming-soon\";\n\nexport interface ServiceGroupDefinition {\n key: ServiceGroup;\n title: string;\n /** One line of plain creator language: what does this group do for my portfolio/revenue? */\n tagline: string;\n /** Optional small chip next to the title (e.g. the token standard) */\n badge?: string;\n}\n\n/** Ordered — launchpad pages render sections in this order. */\nexport const LAUNCHPAD_SERVICE_GROUPS: ServiceGroupDefinition[] = [\n {\n key: \"single-edition\",\n title: \"Single Edition NFTs\",\n badge: \"ERC-721\",\n tagline: \"Publish one-of-one works and group them under your own brand.\",\n },\n {\n key: \"limited-editions\",\n title: \"Limited Editions\",\n badge: \"ERC-1155\",\n tagline: \"Release your work in numbered multiples collectors can buy and trade.\",\n },\n {\n key: \"creator-coins\",\n title: \"Creator Coins\",\n tagline: \"Launch your own coin with a public liquidity pool you control.\",\n },\n {\n key: \"collection-drop\",\n title: \"Collection Drop\",\n tagline: \"Timed releases with mint windows your community can race to collect.\",\n },\n {\n key: \"pop-protocol\",\n title: \"POP Protocol\",\n tagline: \"Credentials for your events and community — permanent, non-transferable proof.\",\n },\n {\n key: \"licensing-remix\",\n title: \"Licensing & Remix\",\n tagline: \"Licensed derivatives with attribution and royalties flowing back to you.\",\n },\n {\n key: \"claims\",\n title: \"Claims\",\n tagline: \"Free wins that build your creator profile and bring your existing work onchain.\",\n },\n {\n key: \"coming-soon\",\n title: \"Coming soon\",\n tagline: \"More monetization services on the way.\",\n },\n];\n\nexport interface ServiceDefinition {\n key: string;\n title: string;\n subtitle: string;\n description: string;\n features: string[];\n icon: LucideIcon;\n gradient: string;\n borderColor: string;\n iconColor: string;\n buttonColor?: string;\n badge: string;\n status: ServiceStatus;\n category: ServiceCategory;\n group: ServiceGroup;\n /** Secondary browse link label — injected app adds the href */\n browseLinkLabel?: string;\n}\n\nexport const LAUNCHPAD_SERVICE_DEFINITIONS: ServiceDefinition[] = [\n // ── Create ────────────────────────────────────────────────────────────────\n {\n key: \"mint-ip-asset\",\n title: \"Mint IP NFT\",\n subtitle: \"Publish any creative work on Starknet\",\n description:\n \"Turn any photo, video, or audio file into a programmable IP NFT. Gasless, permanent, and immediately tradeable on Medialane.\",\n features: [\"Gasless via ChipiPay\", \"IPFS metadata\", \"Programmable licensing\"],\n icon: ImagePlus,\n gradient: \"from-blue-500/10 via-sky-400/4 to-transparent\",\n borderColor: \"border-blue-500/20\",\n iconColor: \"text-blue-500\",\n buttonColor: \"bg-brand-blue hover:bg-brand-blue/90\",\n badge: \"Create\",\n status: \"live\",\n category: \"create\",\n group: \"single-edition\",\n },\n {\n key: \"create-collection\",\n title: \"Create Collection\",\n subtitle: \"Group your NFTs under a shared identity\",\n description:\n \"Deploy a branded ERC-721 collection with its own page, metadata, and on-chain identity — ready to populate with assets at any time.\",\n features: [\"Factory-deployed ERC-721\", \"Branded collection page\", \"Add assets at any time\"],\n icon: Layers,\n gradient: \"from-violet-500/10 via-purple-400/4 to-transparent\",\n borderColor: \"border-violet-500/20\",\n iconColor: \"text-violet-500\",\n buttonColor: \"bg-brand-purple hover:bg-brand-purple/90\",\n badge: \"Create\",\n status: \"live\",\n category: \"create\",\n group: \"single-edition\",\n },\n {\n key: \"ip-collection-1155\",\n title: \"Edition Collection\",\n subtitle: \"Deploy a contract for multi-copy NFT releases\",\n description:\n \"Launch a collection for music tracks, art prints, or any IP you want to release in multiples. Each edition token is numbered and tradeable on Medialane.\",\n features: [\"Multi-edition ERC-1155\", \"Immutable provenance\", \"Tradeable on Medialane\"],\n icon: Layers,\n gradient: \"from-violet-500/10 via-purple-400/4 to-transparent\",\n borderColor: \"border-violet-500/20\",\n iconColor: \"text-violet-500\",\n buttonColor: \"bg-violet-600 hover:bg-violet-700\",\n badge: \"Create\",\n status: \"live\",\n category: \"create\",\n group: \"limited-editions\",\n },\n {\n key: \"mint-editions\",\n title: \"Mint NFT Editions\",\n subtitle: \"Add new editions to an existing collection\",\n description:\n \"Select one of your Edition Collection contracts and mint new token editions into it — set supply, upload artwork, and release to collectors.\",\n features: [\"Choose any edition collection\", \"Set edition supply\", \"IPFS metadata\"],\n icon: PlusCircle,\n gradient: \"from-fuchsia-500/10 via-violet-400/4 to-transparent\",\n borderColor: \"border-fuchsia-500/20\",\n iconColor: \"text-fuchsia-500\",\n buttonColor: \"bg-fuchsia-600 hover:bg-fuchsia-700\",\n badge: \"Create\",\n status: \"live\",\n category: \"create\",\n group: \"limited-editions\",\n },\n {\n key: \"remix-asset\",\n title: \"Remix Asset\",\n subtitle: \"Derivative works with on-chain attribution\",\n description:\n \"Create a licensed derivative of any IP asset with full provenance and attribution flowing back to the original creator.\",\n features: [\"On-chain attribution\", \"License-enforced at mint\", \"Royalties to original creator\"],\n icon: GitBranch,\n gradient: \"from-rose-500/10 via-pink-400/4 to-transparent\",\n borderColor: \"border-rose-500/20\",\n iconColor: \"text-rose-500\",\n buttonColor: \"bg-brand-rose hover:bg-brand-rose/90\",\n badge: \"Create\",\n status: \"live\",\n category: \"create\",\n group: \"licensing-remix\",\n },\n\n // ── Launch ────────────────────────────────────────────────────────────────\n {\n key: \"pop-protocol\",\n title: \"POP Protocol\",\n subtitle: \"Proof-of-participation for events & communities\",\n description:\n \"Give every attendee proof they were there. Issue soulbound credentials to your community — one non-transferable badge per wallet, permanently on-chain. Works for bootcamps, hackathons, and conferences.\",\n features: [\"Soulbound · non-transferable\", \"One credential per wallet\", \"Optional allowlist gating\"],\n icon: Award,\n gradient: \"from-emerald-500/10 via-green-400/4 to-transparent\",\n borderColor: \"border-emerald-500/20\",\n iconColor: \"text-emerald-500\",\n buttonColor: \"bg-green-600 hover:bg-green-700\",\n badge: \"Launch\",\n browseLinkLabel: \"Browse events\",\n status: \"live\",\n category: \"launch\",\n group: \"pop-protocol\",\n },\n {\n key: \"collection-drop\",\n title: \"Collection Drop\",\n subtitle: \"Limited-edition timed releases\",\n description:\n \"Launch a fixed-supply ERC-721 drop with a defined mint window and per-wallet limit. Set your open date and let your community race to collect.\",\n features: [\"Fixed supply cap\", \"Timed mint window\", \"Free or paid mint\"],\n icon: Package,\n gradient: \"from-orange-500/10 via-amber-400/4 to-transparent\",\n borderColor: \"border-orange-500/20\",\n iconColor: \"text-orange-500\",\n buttonColor: \"bg-orange-600 hover:bg-orange-700\",\n badge: \"Launch\",\n browseLinkLabel: \"Browse drops\",\n status: \"live\",\n category: \"launch\",\n group: \"collection-drop\",\n },\n {\n key: \"ip-tickets\",\n title: \"IP Tickets\",\n subtitle: \"Gate real-world experiences with NFTs\",\n description:\n \"Distribute tickets for concerts, workshops, and events. Each ticket is verifiable on-chain proof of attendance.\",\n features: [\"NFT-based event gating\", \"Proof of attendance\", \"Transferable or soulbound\"],\n icon: Ticket,\n gradient: \"from-teal-500/7 via-cyan-400/3 to-transparent\",\n borderColor: \"border-teal-500/15\",\n iconColor: \"text-teal-500\",\n badge: \"Soon\",\n status: \"building\",\n category: \"launch\",\n group: \"coming-soon\",\n },\n {\n key: \"membership\",\n title: \"Membership\",\n subtitle: \"Token-gated access passes\",\n description:\n \"Create tiered membership passes that unlock exclusive content, private communities, and experiences for your most loyal fans.\",\n features: [\"Token-gated content\", \"Tiered access levels\", \"Community alignment\"],\n icon: Users,\n gradient: \"from-indigo-500/6 via-violet-400/2 to-transparent\",\n borderColor: \"border-indigo-500/10\",\n iconColor: \"text-indigo-400\",\n badge: \"Soon\",\n status: \"soon\",\n category: \"launch\",\n group: \"coming-soon\",\n },\n\n // ── Monetize ─────────────────────────────────────────────────────────────\n {\n key: \"subscriptions\",\n title: \"Subscriptions\",\n subtitle: \"Recurring on-chain revenue\",\n description:\n \"Monthly licensing, creator support tiers, and access passes — all auto-renewed without intermediaries.\",\n features: [\"Recurring revenue\", \"Auto-renewal protocol\", \"No middlemen\"],\n icon: RefreshCw,\n gradient: \"from-sky-500/6 via-blue-400/2 to-transparent\",\n borderColor: \"border-sky-500/10\",\n iconColor: \"text-sky-400\",\n badge: \"Soon\",\n status: \"soon\",\n category: \"monetize\",\n group: \"coming-soon\",\n },\n {\n key: \"ip-coins\",\n title: \"IP Coins\",\n subtitle: \"Fractional ownership of intellectual property\",\n description:\n \"Tokenize your IP catalog as fungible tokens. Enable fractional ownership and liquid markets around your creative work.\",\n features: [\"Fungible IP tokens\", \"Fractional ownership\", \"Liquid secondary markets\"],\n icon: Coins,\n gradient: \"from-amber-500/6 via-yellow-400/2 to-transparent\",\n borderColor: \"border-amber-500/10\",\n iconColor: \"text-amber-400\",\n badge: \"Soon\",\n status: \"soon\",\n category: \"monetize\",\n group: \"coming-soon\",\n },\n {\n key: \"creator-coins\",\n title: \"Creator Coin\",\n subtitle: \"Your own coin, your liquidity\",\n description:\n \"Launch a standard ERC-20 coin tied to your creative work, paired with a public Ekubo liquidity pool. You set the supply and allocation — and you stay in control of the liquidity.\",\n features: [\"Standard ERC-20\", \"Public Ekubo pool\", \"You control the liquidity\"],\n icon: TrendingUp,\n gradient: \"from-pink-500/6 via-rose-400/2 to-transparent\",\n borderColor: \"border-pink-500/20\",\n iconColor: \"text-pink-400\",\n buttonColor: \"bg-brand-rose hover:bg-brand-rose/90\",\n badge: \"Soon\",\n status: \"soon\",\n category: \"monetize\",\n group: \"creator-coins\",\n },\n\n // ── Claims ────────────────────────────────────────────────────────────────\n {\n key: \"claim-memecoin\",\n title: \"Claim Memecoin\",\n subtitle: \"Bring your Starknet coin to Medialane\",\n description:\n \"Already launched a coin on Starknet (unrug or partner)? Claim it to add it to Medialane — reviewed by our team, then live on the Coins page and your profile.\",\n features: [\"unrug & partner coins\", \"Team reviewed\", \"Lists on /coins\"],\n icon: Coins,\n gradient: \"from-orange-500/10 via-amber-400/4 to-transparent\",\n borderColor: \"border-orange-500/20\",\n iconColor: \"text-orange-500\",\n buttonColor: \"bg-orange-600 hover:bg-orange-700\",\n badge: \"Claim\",\n status: \"soon\",\n category: \"monetize\",\n group: \"creator-coins\",\n },\n {\n key: \"claim-username\",\n title: \"Claim Username\",\n subtitle: \"Reserve your creator page URL\",\n description:\n \"Claim your unique username and get a shareable creator page — your public portfolio at a clean, memorable URL. Free, and yours.\",\n features: [\"Free claim\", \"Shareable creator page\", \"Your public portfolio\"],\n icon: AtSign,\n gradient: \"from-violet-500/10 via-purple-400/4 to-transparent\",\n borderColor: \"border-violet-500/20\",\n iconColor: \"text-violet-500\",\n buttonColor: \"bg-brand-purple hover:bg-brand-purple/90\",\n badge: \"Claim\",\n status: \"live\",\n category: \"create\",\n group: \"claims\",\n },\n {\n key: \"claim-collection\",\n title: \"Claim Collection\",\n subtitle: \"Import an existing Starknet collection\",\n description:\n \"Already deployed an ERC-721 collection on Starknet? Claim it to link it to your Medialane profile and give it a branded collection page.\",\n features: [\"Import existing ERC-721\", \"Linked to your profile\", \"Branded collection page\"],\n icon: FolderInput,\n gradient: \"from-blue-500/10 via-sky-400/4 to-transparent\",\n borderColor: \"border-blue-500/20\",\n iconColor: \"text-blue-500\",\n buttonColor: \"bg-brand-blue hover:bg-brand-blue/90\",\n badge: \"Claim\",\n status: \"live\",\n category: \"create\",\n group: \"claims\",\n },\n];\n"],"mappings":"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","names":[]}
@@ -2,6 +2,17 @@ import { LucideIcon } from 'lucide-react';
2
2
 
3
3
  type ServiceStatus = "live" | "building" | "soon";
4
4
  type ServiceCategory = "create" | "launch" | "monetize";
5
+ type ServiceGroup = "single-edition" | "limited-editions" | "creator-coins" | "collection-drop" | "pop-protocol" | "licensing-remix" | "claims" | "coming-soon";
6
+ interface ServiceGroupDefinition {
7
+ key: ServiceGroup;
8
+ title: string;
9
+ /** One line of plain creator language: what does this group do for my portfolio/revenue? */
10
+ tagline: string;
11
+ /** Optional small chip next to the title (e.g. the token standard) */
12
+ badge?: string;
13
+ }
14
+ /** Ordered — launchpad pages render sections in this order. */
15
+ declare const LAUNCHPAD_SERVICE_GROUPS: ServiceGroupDefinition[];
5
16
  interface ServiceDefinition {
6
17
  key: string;
7
18
  title: string;
@@ -16,9 +27,10 @@ interface ServiceDefinition {
16
27
  badge: string;
17
28
  status: ServiceStatus;
18
29
  category: ServiceCategory;
30
+ group: ServiceGroup;
19
31
  /** Secondary browse link label — injected app adds the href */
20
32
  browseLinkLabel?: string;
21
33
  }
22
34
  declare const LAUNCHPAD_SERVICE_DEFINITIONS: ServiceDefinition[];
23
35
 
24
- export { LAUNCHPAD_SERVICE_DEFINITIONS, type ServiceCategory, type ServiceDefinition, type ServiceStatus };
36
+ export { LAUNCHPAD_SERVICE_DEFINITIONS, LAUNCHPAD_SERVICE_GROUPS, type ServiceCategory, type ServiceDefinition, type ServiceGroup, type ServiceGroupDefinition, type ServiceStatus };
@@ -2,6 +2,17 @@ import { LucideIcon } from 'lucide-react';
2
2
 
3
3
  type ServiceStatus = "live" | "building" | "soon";
4
4
  type ServiceCategory = "create" | "launch" | "monetize";
5
+ type ServiceGroup = "single-edition" | "limited-editions" | "creator-coins" | "collection-drop" | "pop-protocol" | "licensing-remix" | "claims" | "coming-soon";
6
+ interface ServiceGroupDefinition {
7
+ key: ServiceGroup;
8
+ title: string;
9
+ /** One line of plain creator language: what does this group do for my portfolio/revenue? */
10
+ tagline: string;
11
+ /** Optional small chip next to the title (e.g. the token standard) */
12
+ badge?: string;
13
+ }
14
+ /** Ordered — launchpad pages render sections in this order. */
15
+ declare const LAUNCHPAD_SERVICE_GROUPS: ServiceGroupDefinition[];
5
16
  interface ServiceDefinition {
6
17
  key: string;
7
18
  title: string;
@@ -16,9 +27,10 @@ interface ServiceDefinition {
16
27
  badge: string;
17
28
  status: ServiceStatus;
18
29
  category: ServiceCategory;
30
+ group: ServiceGroup;
19
31
  /** Secondary browse link label — injected app adds the href */
20
32
  browseLinkLabel?: string;
21
33
  }
22
34
  declare const LAUNCHPAD_SERVICE_DEFINITIONS: ServiceDefinition[];
23
35
 
24
- export { LAUNCHPAD_SERVICE_DEFINITIONS, type ServiceCategory, type ServiceDefinition, type ServiceStatus };
36
+ export { LAUNCHPAD_SERVICE_DEFINITIONS, LAUNCHPAD_SERVICE_GROUPS, type ServiceCategory, type ServiceDefinition, type ServiceGroup, type ServiceGroupDefinition, type ServiceStatus };