feat: add .sol domain registration card to LAB page
This commit is contained in:
parent
d49a06d79c
commit
199a318d8d
1 changed files with 82 additions and 5 deletions
|
|
@ -8,6 +8,76 @@
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=JetBrains+Mono:wght@300;400;500;700&display=swap" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=JetBrains+Mono:wght@300;400;500;700&display=swap" rel="stylesheet">
|
||||||
<link rel="stylesheet" href="/css/style.css">
|
<link rel="stylesheet" href="/css/style.css">
|
||||||
<link rel="stylesheet" href="/css/section.css">
|
<link rel="stylesheet" href="/css/section.css">
|
||||||
|
<style>
|
||||||
|
.deploy-grid {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(3, 1fr);
|
||||||
|
gap: 1.5rem;
|
||||||
|
max-width: clamp(1200px, 90vw, 2400px);
|
||||||
|
margin: 0 auto;
|
||||||
|
padding: 0 2rem 3rem;
|
||||||
|
}
|
||||||
|
@media (max-width: 900px) { .deploy-grid { grid-template-columns: repeat(2, 1fr); } }
|
||||||
|
@media (max-width: 600px) { .deploy-grid { grid-template-columns: 1fr; } }
|
||||||
|
.deploy-card {
|
||||||
|
background: rgba(16, 16, 16, 0.85);
|
||||||
|
border: 1px solid var(--border);
|
||||||
|
border-left: 3px solid rgba(138, 43, 226, 0.6);
|
||||||
|
padding: 1.5rem;
|
||||||
|
cursor: pointer;
|
||||||
|
transition: all 0.25s ease;
|
||||||
|
text-decoration: none;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
.deploy-card:hover {
|
||||||
|
border-left-color: #a855f7;
|
||||||
|
transform: translateY(-2px);
|
||||||
|
box-shadow: 0 4px 20px rgba(138, 43, 226, 0.15);
|
||||||
|
background: rgba(20, 20, 20, 0.95);
|
||||||
|
}
|
||||||
|
.deploy-card-status {
|
||||||
|
font-family: 'JetBrains Mono', monospace;
|
||||||
|
font-size: 0.6rem;
|
||||||
|
color: #a855f7;
|
||||||
|
letter-spacing: 2px;
|
||||||
|
margin-bottom: 0.75rem;
|
||||||
|
}
|
||||||
|
.deploy-card-title {
|
||||||
|
font-family: 'Orbitron', monospace;
|
||||||
|
font-size: 0.85rem;
|
||||||
|
color: #ffffff;
|
||||||
|
letter-spacing: 2px;
|
||||||
|
margin-bottom: 0.5rem;
|
||||||
|
}
|
||||||
|
.deploy-card-desc {
|
||||||
|
font-family: 'JetBrains Mono', monospace;
|
||||||
|
font-size: 0.65rem;
|
||||||
|
color: rgba(255, 255, 255, 0.45);
|
||||||
|
line-height: 1.5;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
.deploy-card-tags {
|
||||||
|
display: flex;
|
||||||
|
gap: 0.5rem;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
.deploy-tag {
|
||||||
|
font-family: 'JetBrains Mono', monospace;
|
||||||
|
font-size: 0.55rem;
|
||||||
|
color: rgba(138, 43, 226, 0.8);
|
||||||
|
background: rgba(138, 43, 226, 0.08);
|
||||||
|
border: 1px solid rgba(138, 43, 226, 0.2);
|
||||||
|
padding: 0.2rem 0.5rem;
|
||||||
|
letter-spacing: 1px;
|
||||||
|
}
|
||||||
|
.deploy-card-url {
|
||||||
|
font-family: 'JetBrains Mono', monospace;
|
||||||
|
font-size: 0.55rem;
|
||||||
|
color: rgba(255, 255, 255, 0.25);
|
||||||
|
margin-top: 0.75rem;
|
||||||
|
letter-spacing: 1px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="scanline-overlay"></div>
|
<div class="scanline-overlay"></div>
|
||||||
|
|
@ -43,11 +113,18 @@
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section class="subpage-content">
|
<section class="subpage-content">
|
||||||
<div class="subpage-placeholder">
|
<div class="deploy-grid">
|
||||||
<div class="placeholder-icon">⬢</div>
|
<a href="/soldomains" class="deploy-card">
|
||||||
<div class="placeholder-status">UNDER CONSTRUCTION</div>
|
<div class="deploy-card-status">◆ EXPERIMENTAL</div>
|
||||||
<div class="placeholder-text">This section is being prepared. Content deployment imminent.</div>
|
<div class="deploy-card-title">.SOL DOMAIN REGISTRATION</div>
|
||||||
<div class="placeholder-classification">CLASSIFICATION: PENDING // STATUS: STANDBY</div>
|
<div class="deploy-card-desc">Look up, register, and manage Solana .sol domains on-chain. Connect your wallet and claim your on-chain identity.</div>
|
||||||
|
<div class="deploy-card-tags">
|
||||||
|
<span class="deploy-tag">SOLANA</span>
|
||||||
|
<span class="deploy-tag">WEB3</span>
|
||||||
|
<span class="deploy-tag">DOMAINS</span>
|
||||||
|
</div>
|
||||||
|
<div class="deploy-card-url">jaeswift.xyz/soldomains</div>
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue