@abtnode/router-templates 1.16.34 → 1.16.35

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.
@@ -2,15 +2,15 @@ const getCommonTemplate = require('./common');
2
2
  const getIcon = require('./util/get-icon');
3
3
 
4
4
  module.exports = (blocklet, nodeInfo, adminURL) => {
5
- let content = 'Please come back later.';
5
+ let content = '<p style="color: #121212">Thanks for your patience. Please check back soon.</p>';
6
6
  if (adminURL) {
7
- content = `${content} If you are an administrator, you can go to <a href="${
7
+ content = `${content} <p style="color: #121212"> If you're the <span style="font-weight:bold">site owner</span>, <a href="${
8
8
  adminURL || '#'
9
- }" alt="dashboard">dashboard</a> to manage the application.`;
9
+ }" alt="log in">log in</a> to launch this site.<p>`;
10
10
  }
11
11
 
12
12
  return getCommonTemplate({
13
- title: 'Under maintenance',
13
+ title: 'Something Awesome is Coming!',
14
14
  icon: getIcon(blocklet),
15
15
  appName: blocklet?.meta?.title,
16
16
  pageTitle: `${blocklet?.meta?.title}`,
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.16.34",
6
+ "version": "1.16.35",
7
7
  "description": "Provide page templates for ABT Node router",
8
8
  "main": "lib/index.js",
9
9
  "files": [
@@ -20,10 +20,10 @@
20
20
  "license": "Apache-2.0",
21
21
  "dependencies": {
22
22
  "@arcblock/result-html-pages": "^2.11.1",
23
- "@blocklet/meta": "1.16.34"
23
+ "@blocklet/meta": "1.16.35"
24
24
  },
25
25
  "devDependencies": {
26
26
  "jest": "^29.7.0"
27
27
  },
28
- "gitHead": "843b12c2cbf9c11497dea690783735f0a83551c9"
28
+ "gitHead": "a1888a5814c97a1cf6adfcee4e4d0721eabba7c3"
29
29
  }