Skip to content

Commit 284d964

Browse files
committed
Replace main page with chain closure announcement.
1 parent d423a96 commit 284d964

File tree

2 files changed

+24
-13
lines changed

2 files changed

+24
-13
lines changed
2.76 KB
Loading

packages/apps/src/index.tsx

Lines changed: 24 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,29 @@
1-
// Copyright 2017-2022 @polkadot/apps authors & contributors
2-
// SPDX-License-Identifier: Apache-2.0
3-
4-
// setup these right at front
5-
import './initSettings';
6-
import 'semantic-ui-css/semantic.min.css';
7-
import '@polkadot/react-components/i18n';
8-
import '@polkadot/api-augment/substrate';
9-
101
import React from 'react';
112
import { createRoot } from 'react-dom/client';
123

13-
import Root from './Root';
4+
const App = () => (
5+
<div style={{ textAlign: 'center', marginTop: '50px' }}>
6+
<img src='/dock-mainnet.png' />
7+
<h1 style={{ textAlign: 'center' }}>Dock Blockchain Closure Announcement</h1>
8+
9+
<div style={{ display: 'flex', justifyContent: 'center' }}>
10+
<div style={{ textAlign: 'left', maxWidth: '600px' }}>
11+
<p style={{ fontSize: '18px' }}>Thank you for your interest in the Dock blockchain. The Dock network has migrated its functionality and all tokens to the cheqd blockchain. The official migration window ended on March 15, 2025. This strategic move allows us to leverage enhanced capabilities and continue delivering innovative blockchain solutions.</p>
12+
<p style={{ fontSize: '18px' }}>For more information on the merger please read our detailed <a href='https://www.dock.io/post/dock-and-cheqd-form-alliance-to-accelerate-global-adoption-of-decentralized-id' target='_blank'>blog post</a>.</p>
13+
<h1 style={{ textAlign: 'center' }}>Get in Touch with cheqd</h1>
14+
<p style={{ fontSize: '18px' }}>We encourage you to stay connected with the cheqd community:</p>
15+
<ul style={{ fontSize: '18px' }}>
16+
<li>Website: <a href='https://cheqd.io' target='_blank'>https://cheqd.io</a></li>
17+
<li>Telegram: <a href='https://t.me/cheqd' target='_blank'>https://t.me/cheqd</a></li>
18+
</ul>
19+
<p style={{ fontSize: '18px' }}>Thank you for your understanding and continued support.<br />
20+
<br />
21+
The Dock Team
22+
</p>
23+
</div>
24+
</div>
25+
</div>
26+
);
1427

1528
const rootId = 'root';
1629
const rootElement = document.getElementById(rootId);
@@ -19,6 +32,4 @@ if (!rootElement) {
1932
throw new Error(`Unable to find element with id '${rootId}'`);
2033
}
2134

22-
createRoot(rootElement).render(
23-
<Root isElectron={false} />
24-
);
35+
createRoot(rootElement).render(<App />);

0 commit comments

Comments
 (0)