Skip to content

Commit ca1bd67

Browse files
authored
Initial release - DLT website v1.0
0 parents  commit ca1bd67

30 files changed

+2519
-0
lines changed

404.html

Lines changed: 241 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,241 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Coming Soon | DLT - Distributed Ledger Technologies</title>
7+
<meta name="description" content="This page is coming soon. Distributed Ledger Technologies is building the future of digital finance.">
8+
<meta name="robots" content="noindex, nofollow">
9+
<link rel="icon" type="image/svg+xml" href="images/favicon.svg">
10+
11+
<style>
12+
@font-face {
13+
font-family: 'Ethnocentric';
14+
src: url('fonts/ethnocentric.otf') format('opentype');
15+
font-weight: normal;
16+
font-style: normal;
17+
font-display: swap;
18+
}
19+
20+
:root {
21+
--bg-primary: #0a0a0f;
22+
--neon-blue: #00d4ff;
23+
--neon-blue-dim: rgba(0, 212, 255, 0.3);
24+
--neon-blue-glow: rgba(0, 212, 255, 0.15);
25+
--text-primary: #ffffff;
26+
--text-secondary: #a0a0b0;
27+
--text-dim: #606070;
28+
--border: rgba(255, 255, 255, 0.08);
29+
}
30+
31+
* {
32+
margin: 0;
33+
padding: 0;
34+
box-sizing: border-box;
35+
}
36+
37+
body {
38+
font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
39+
background: var(--bg-primary);
40+
color: var(--text-primary);
41+
min-height: 100vh;
42+
display: flex;
43+
flex-direction: column;
44+
align-items: center;
45+
justify-content: center;
46+
text-align: center;
47+
padding: 24px;
48+
position: relative;
49+
overflow: hidden;
50+
}
51+
52+
body::before {
53+
content: '';
54+
position: absolute;
55+
top: 50%;
56+
left: 50%;
57+
transform: translate(-50%, -50%);
58+
width: 600px;
59+
height: 600px;
60+
background: radial-gradient(circle, var(--neon-blue-glow) 0%, transparent 70%);
61+
pointer-events: none;
62+
animation: pulse 6s ease-in-out infinite;
63+
}
64+
65+
@keyframes pulse {
66+
0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
67+
50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
68+
}
69+
70+
.content {
71+
position: relative;
72+
z-index: 1;
73+
max-width: 500px;
74+
}
75+
76+
.logo {
77+
display: flex;
78+
align-items: center;
79+
justify-content: center;
80+
gap: 12px;
81+
margin-bottom: 48px;
82+
text-decoration: none;
83+
color: var(--text-primary);
84+
}
85+
86+
.logo img {
87+
width: 48px;
88+
height: 48px;
89+
}
90+
91+
.logo-text {
92+
font-family: 'Ethnocentric', -apple-system, sans-serif;
93+
font-size: 32px;
94+
color: var(--neon-blue);
95+
text-shadow: 0 0 20px var(--neon-blue-dim);
96+
letter-spacing: 2px;
97+
}
98+
99+
.icon-container {
100+
width: 120px;
101+
height: 120px;
102+
margin: 0 auto 32px;
103+
background: var(--neon-blue-glow);
104+
border: 1px solid var(--neon-blue-dim);
105+
border-radius: 30px;
106+
display: flex;
107+
align-items: center;
108+
justify-content: center;
109+
animation: float 4s ease-in-out infinite;
110+
}
111+
112+
@keyframes float {
113+
0%, 100% { transform: translateY(0); }
114+
50% { transform: translateY(-10px); }
115+
}
116+
117+
.icon-container svg {
118+
width: 56px;
119+
height: 56px;
120+
stroke: var(--neon-blue);
121+
fill: none;
122+
stroke-width: 1.5;
123+
}
124+
125+
h1 {
126+
font-size: 48px;
127+
font-weight: 700;
128+
margin-bottom: 16px;
129+
letter-spacing: -1px;
130+
}
131+
132+
h1 span {
133+
color: var(--neon-blue);
134+
text-shadow: 0 0 30px var(--neon-blue-dim);
135+
}
136+
137+
.subtitle {
138+
font-size: 18px;
139+
color: var(--text-secondary);
140+
margin-bottom: 40px;
141+
line-height: 1.6;
142+
}
143+
144+
.btn {
145+
display: inline-flex;
146+
align-items: center;
147+
gap: 8px;
148+
padding: 14px 28px;
149+
background: var(--neon-blue);
150+
color: var(--bg-primary);
151+
border-radius: 8px;
152+
font-size: 15px;
153+
font-weight: 600;
154+
text-decoration: none;
155+
transition: all 0.3s ease;
156+
}
157+
158+
.btn:hover {
159+
background: #00e5ff;
160+
box-shadow: 0 0 30px var(--neon-blue-dim);
161+
transform: translateY(-2px);
162+
}
163+
164+
.btn svg {
165+
width: 18px;
166+
height: 18px;
167+
transition: transform 0.3s ease;
168+
}
169+
170+
.btn:hover svg {
171+
transform: translateX(-4px);
172+
}
173+
174+
.footer-note {
175+
position: absolute;
176+
bottom: 32px;
177+
left: 50%;
178+
transform: translateX(-50%);
179+
color: var(--text-dim);
180+
font-size: 14px;
181+
}
182+
183+
.footer-note a {
184+
color: var(--neon-blue);
185+
text-decoration: none;
186+
}
187+
188+
.footer-note a:hover {
189+
text-decoration: underline;
190+
}
191+
192+
@media (max-width: 480px) {
193+
h1 {
194+
font-size: 36px;
195+
}
196+
197+
.subtitle {
198+
font-size: 16px;
199+
}
200+
201+
.icon-container {
202+
width: 100px;
203+
height: 100px;
204+
}
205+
206+
.icon-container svg {
207+
width: 44px;
208+
height: 44px;
209+
}
210+
}
211+
</style>
212+
</head>
213+
<body>
214+
<div class="content">
215+
<a href="/" class="logo">
216+
<img src="images/logo.svg" alt="DLT Logo">
217+
<span class="logo-text">DLT</span>
218+
</a>
219+
220+
<div class="icon-container">
221+
<svg viewBox="0 0 24 24">
222+
<circle cx="12" cy="12" r="10"/>
223+
<path d="M12 6v6l4 2"/>
224+
</svg>
225+
</div>
226+
227+
<h1>Coming <span>Soon</span></h1>
228+
229+
<p class="subtitle">We're working on something exciting. This page will be available soon. In the meantime, explore our products and learn more about DLT.</p>
230+
231+
<a href="/" class="btn">
232+
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
233+
<path d="M19 12H5M12 19l-7-7 7-7"/>
234+
</svg>
235+
Back to Home
236+
</a>
237+
</div>
238+
239+
<p class="footer-note">© 2025 <a href="/">Distributed Ledger Technologies</a></p>
240+
</body>
241+
</html>

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
www.distributedledgertechnologies.com

README.md

Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
# DLT - Distributed Ledger Technologies Website
2+
3+
Production-ready website for distributedledgertechnologies.com
4+
5+
## Quick Deploy to GitHub Pages
6+
7+
1. Create new repo: `github.com/DistributedLedgerTech/dlt-website`
8+
2. Upload all files from this zip
9+
3. Add `ethnocentric.otf` font to `/fonts/` folder
10+
4. Go to Settings → Pages → Deploy from branch → `main``/ (root)`
11+
5. Wait for deployment
12+
6. Set custom domain: `www.distributedledgertechnologies.com`
13+
14+
## DNS Configuration
15+
16+
Add these records to your domain registrar:
17+
18+
```
19+
A @ 185.199.108.153
20+
A @ 185.199.109.153
21+
A @ 185.199.110.153
22+
A @ 185.199.111.153
23+
CNAME www distributedledgertech.github.io
24+
```
25+
26+
## Google Analytics Setup
27+
28+
1. Create GA4 property at analytics.google.com
29+
2. Get your Measurement ID (G-XXXXXXXXXX)
30+
3. Replace `GA_MEASUREMENT_ID` in index.html with your ID
31+
32+
## Files Included
33+
34+
```
35+
├── index.html # Main page
36+
├── 404.html # Coming soon page
37+
├── privacy.html # Privacy policy
38+
├── terms.html # Terms of service
39+
├── CNAME # Custom domain
40+
├── favicon.ico # Legacy favicon
41+
├── robots.txt # SEO
42+
├── sitemap.xml # SEO
43+
├── manifest.json # PWA support
44+
├── browserconfig.xml # Windows tiles
45+
├── css/
46+
│ └── style.css # All styles
47+
├── js/
48+
│ └── main.js # Navigation, animations
49+
├── fonts/
50+
│ └── README.md # Add ethnocentric.otf here
51+
└── images/
52+
├── logo.svg # DLT logo
53+
├── favicon.svg # SVG favicon
54+
├── apple-touch-icon.png
55+
├── og-image.png # 1200x630 social share
56+
├── twitter-card.png # 1200x600 Twitter
57+
└── icons/
58+
├── android-chrome-512x512.png
59+
├── android-chrome-192x192.png
60+
├── apple-touch-icon-180x180.png
61+
├── apple-touch-icon-152x152.png
62+
├── apple-touch-icon-120x120.png
63+
├── apple-touch-icon-76x76.png
64+
├── apple-touch-icon.png
65+
├── favicon-32x32.png
66+
├── favicon-16x16.png
67+
└── mstile-150x150.png
68+
```
69+
70+
## SEO Checklist
71+
72+
- [x] Meta descriptions
73+
- [x] Open Graph tags
74+
- [x] Twitter Card tags
75+
- [x] Canonical URLs
76+
- [x] Structured Data (JSON-LD)
77+
- [x] Sitemap.xml
78+
- [x] Robots.txt
79+
- [x] Mobile responsive
80+
- [x] Fast loading (minimal JS)
81+
82+
## Products Listed
83+
84+
| Product | Website | GitHub | Status |
85+
|---------|---------|--------|--------|
86+
| MacMetal Miner | macmetalminer.com | github.com/MacMetalMiner | Live |
87+
| Cora Wallet | corawallet.com | github.com/CoraWallet | Coming 2026 |
88+
| Ayedex | ayedex.com | github.com/Ayedex-Pool | Coming Soon |
89+
| HydroDollar | hydrodollar.com | github.com/TheHydroDollar | Coming Soon |
90+
91+
## Support
92+
93+
Email: david@knexmail.com
94+
95+
---
96+
97+
© 2025 Distributed Ledger Technologies

browserconfig.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<browserconfig>
3+
<msapplication>
4+
<tile>
5+
<square150x150logo src="/images/icons/mstile-150x150.png"/>
6+
<TileColor>#0a0a0f</TileColor>
7+
</tile>
8+
</msapplication>
9+
</browserconfig>

0 commit comments

Comments
 (0)