-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (82 loc) · 5.46 KB
/
Copy pathindex.html
File metadata and controls
82 lines (82 loc) · 5.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Digital Product Stores</title>
<script defer data-domain="inity13.github.io" src="https://plausible.io/js/script.js"></script>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: #0a0a0a;
color: #e0e0e0;
min-height: 100vh;
padding: 2rem;
}
.container { max-width: 900px; margin: 0 auto; }
h1 {
font-size: 2rem;
margin-bottom: 0.5rem;
background: linear-gradient(135deg, #60a5fa, #a78bfa);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.subtitle { color: #888; margin-bottom: 2rem; }
.stores {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
gap: 1rem;
}
.store-card {
background: #151515;
border: 1px solid #252525;
border-radius: 8px;
padding: 1.25rem;
text-decoration: none;
color: #e0e0e0;
transition: border-color 0.2s, transform 0.2s;
}
.store-card:hover {
border-color: #60a5fa;
transform: translateY(-2px);
}
.store-card h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.store-card p { font-size: 0.85rem; color: #888; line-height: 1.4; }
</style>
</head>
<body>
<div class="container">
<h1>Premium Digital Products</h1>
<p class="subtitle">Production-ready tools, templates, and guides for developers and professionals.</p>
<div class="stores">
<a class="store-card" href="/datastack-pro/"><h3>DataStack Pro</h3><p>Databricks & Apache Spark tools, templates, and guides.</p></a>
<a class="store-card" href="/ai-builder-pro/"><h3>AI Builder Pro</h3><p>AI & LLM toolkit for building intelligent applications.</p></a>
<a class="store-card" href="/ml-starter-kit/"><h3>ML Starter Kit</h3><p>Machine learning starter templates and boilerplates.</p></a>
<a class="store-card" href="/api-developer-pro/"><h3>API Developer Pro</h3><p>API development tools, templates, and best practices.</p></a>
<a class="store-card" href="/cert-prep-pro/"><h3>Cert Prep Pro</h3><p>Certification preparation guides and study materials.</p></a>
<a class="store-card" href="/cheatsheet-reference-pro/"><h3>Cheatsheet Reference Pro</h3><p>Quick-reference cheatsheets for popular technologies.</p></a>
<a class="store-card" href="/cloud-architecture-pro/"><h3>Cloud Architecture Pro</h3><p>Cloud architecture patterns and deployment templates.</p></a>
<a class="store-card" href="/content-creator-pro/"><h3>Content Creator Pro</h3><p>Tools and templates for technical content creators.</p></a>
<a class="store-card" href="/data-analyst-pro/"><h3>Data Analyst Pro</h3><p>Data analysis tools, dashboards, and report templates.</p></a>
<a class="store-card" href="/data-pipeline-pro/"><h3>Data Pipeline Pro</h3><p>ETL pipeline templates and data orchestration tools.</p></a>
<a class="store-card" href="/database-admin-pro/"><h3>Database Admin Pro</h3><p>Database administration scripts, monitoring, and optimization.</p></a>
<a class="store-card" href="/datanest-platform-pro/"><h3>DataNest Platform Pro</h3><p>Data platform management and governance tools.</p></a>
<a class="store-card" href="/devops-toolkit-pro/"><h3>DevOps Toolkit Pro</h3><p>DevOps automation, CI/CD templates, and infrastructure tools.</p></a>
<a class="store-card" href="/freelancer-toolkit-pro/"><h3>Freelancer Toolkit Pro</h3><p>Business tools and templates for freelance developers.</p></a>
<a class="store-card" href="/frontend-developer-pro/"><h3>Frontend Developer Pro</h3><p>Frontend components, design systems, and UI templates.</p></a>
<a class="store-card" href="/interview-prep-pro/"><h3>Interview Prep Pro</h3><p>Technical interview preparation guides and practice problems.</p></a>
<a class="store-card" href="/ml-engineer-toolkit/"><h3>ML Engineer Toolkit</h3><p>MLOps tools, model deployment templates, and pipelines.</p></a>
<a class="store-card" href="/nocode-builder-pro/"><h3>NoCode Builder Pro</h3><p>No-code and low-code automation templates.</p></a>
<a class="store-card" href="/notion-developer-pro/"><h3>Notion Developer Pro</h3><p>Notion templates for developers and tech teams.</p></a>
<a class="store-card" href="/pm-toolkit-pro/"><h3>PM Toolkit Pro</h3><p>Project management templates and planning tools.</p></a>
<a class="store-card" href="/python-developer-pro/"><h3>Python Developer Pro</h3><p>Python tools, utilities, and project templates.</p></a>
<a class="store-card" href="/retail-automation-pro/"><h3>Retail Automation Pro</h3><p>E-commerce automation and retail analytics tools.</p></a>
<a class="store-card" href="/security-engineer-pro/"><h3>Security Engineer Pro</h3><p>Security audit tools, compliance templates, and hardening guides.</p></a>
<a class="store-card" href="/spreadsheet-tools-pro/"><h3>Spreadsheet Tools Pro</h3><p>Advanced spreadsheet templates and automation macros.</p></a>
<a class="store-card" href="/sre-platform-pro/"><h3>SRE Platform Pro</h3><p>Site reliability tools, runbooks, and monitoring templates.</p></a>
<a class="store-card" href="/starter-templates-pro/"><h3>Starter Templates Pro</h3><p>Web development starter templates and boilerplates.</p></a>
</div>
</div>
</body>
</html>