44 lines
1.5 KiB
JavaScript
44 lines
1.5 KiB
JavaScript
(function () {
|
|
const OrgPortal = (window.OrgPortal = window.OrgPortal || {});
|
|
const { h } = OrgPortal.runtime;
|
|
|
|
OrgPortal.componentFns = OrgPortal.componentFns || {};
|
|
|
|
OrgPortal.componentFns.Footer = function Footer() {
|
|
return h(
|
|
"div",
|
|
{ className: "footer" },
|
|
h(
|
|
"div",
|
|
{ className: "wrapper" },
|
|
h(
|
|
"div",
|
|
null,
|
|
h("h3", null, "Organization Controls"),
|
|
h(
|
|
"ul",
|
|
{ style: { listStyleType: "none", padding: 0 } },
|
|
h("li", null, "Roster Management"),
|
|
h("li", null, "Fleet Assignment"),
|
|
h("li", null, "Treasury Permissions"),
|
|
h("li", null, "Asset Registry"),
|
|
),
|
|
),
|
|
h(
|
|
"div",
|
|
null,
|
|
h("h3", null, "Planned Extensions"),
|
|
h(
|
|
"ul",
|
|
{ style: { listStyleType: "none", padding: 0 } },
|
|
h("li", null, "Contracts Board"),
|
|
h("li", null, "Diplomacy Layer"),
|
|
h("li", null, "Procurement Queue"),
|
|
h("li", null, "Reputation History"),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
};
|
|
})();
|