44 lines
1.5 KiB
JavaScript
44 lines
1.5 KiB
JavaScript
(function () {
|
|
const RegistryApp = (window.RegistryApp = window.RegistryApp || {});
|
|
const { h } = RegistryApp.runtime;
|
|
|
|
RegistryApp.componentFns = RegistryApp.componentFns || {};
|
|
|
|
RegistryApp.componentFns.Footer = function Footer() {
|
|
return h(
|
|
"div",
|
|
{ className: "footer" },
|
|
h(
|
|
"div",
|
|
{ className: "wrapper" },
|
|
h(
|
|
"div",
|
|
null,
|
|
h("h3", null, "Registry Resources"),
|
|
h(
|
|
"ul",
|
|
{ style: { listStyleType: "none", padding: 0 } },
|
|
h("li", null, "Registration Guidelines"),
|
|
h("li", null, "Tax & Fee Schedule"),
|
|
h("li", null, "Legal Compliance"),
|
|
h("li", null, "Trademark Database"),
|
|
),
|
|
),
|
|
h(
|
|
"div",
|
|
null,
|
|
h("h3", null, "Bureau Support"),
|
|
h(
|
|
"ul",
|
|
{ style: { listStyleType: "none", padding: 0 } },
|
|
h("li", null, "Office: Sector 7 Admin Block"),
|
|
h("li", null, "Hours: 0800 - 1600 (GST)"),
|
|
h("li", null, "Helpdesk: 555-01-REGISTRY"),
|
|
h("li", null, "support@org-bureau.gov"),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
};
|
|
})();
|