Adds missing standard artifacts: - README.md (if missing) - AGENTS.md (AI agent contract) - PLAN.md (current sprint) - STATUS.md (where we are) - DEVELOPMENT.md (dev workflow) - DEPLOYMENT.md (deploy procedure) - TESTING.md (test strategy) - DECISIONS.md (ADR index + templates) - .github/CODEOWNERS - .github/workflows/ci.yml Preserves all existing artifacts. Refs: RugMunchMedia/fleet-template
274 lines
14 KiB
HTML
274 lines
14 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>About — WalletPress · Built by Rug Munch Media</title>
|
|
<meta name="description" content="WalletPress is built by Rug Munch Media LLC — a Wyoming-based crypto infrastructure company. Self-hosted, no DRM, developer-first.">
|
|
<meta name="robots" content="noindex">
|
|
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🔐</text></svg>">
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,510;14..32,590;14..32,700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
|
|
<style>
|
|
:root {
|
|
--bg:#08090a;--bg2:#0c0d0f;--bg3:#121317;--bg4:#181a1f;
|
|
--border:rgba(255,255,255,0.06);--border2:rgba(255,255,255,0.09);
|
|
--fg:#f7f8f8;--fg2:#9ca0a8;--fg3:#5f636b;
|
|
--accent:#f0a030;--accent2:#d48c1e;--accent-glow:rgba(240,160,48,0.12);--accent-glow2:rgba(240,160,48,0.2);
|
|
--cyan:#22d3ee;--purple:#8b5cf6;--green:#22c55e;
|
|
--radius:6px;--radius-lg:12px;--radius-xl:16px;--radius-pill:9999px;--nav-h:52px;
|
|
}
|
|
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
|
|
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
|
|
body{font-family:'Inter',system-ui,-apple-system,sans-serif;background:var(--bg);color:var(--fg);line-height:1.5;-webkit-font-smoothing:antialiased;font-feature-settings:'cv01','ss03';overflow-x:hidden}
|
|
::selection{background:rgba(240,160,48,0.3);color:var(--fg)}
|
|
img{display:block;max-width:100%}
|
|
.reveal{opacity:0;transform:translateY(24px);transition:opacity .6s ease-out,transform .6s ease-out}
|
|
.reveal.visible{opacity:1;transform:translateY(0)}
|
|
|
|
/* NAV */
|
|
nav{position:fixed;top:0;left:0;right:0;z-index:100;height:var(--nav-h);background:rgba(8,9,10,0.82);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);border-bottom:1px solid var(--border)}
|
|
.nav-inner{max-width:1200px;margin:0 auto;padding:0 20px;height:100%;display:flex;align-items:center;justify-content:space-between;gap:16px}
|
|
.logo{display:flex;align-items:center;gap:8px;font-weight:700;font-size:18px;color:var(--fg);text-decoration:none;letter-spacing:-0.02em}
|
|
.logo-dot{width:8px;height:8px;border-radius:50%;background:var(--accent)}
|
|
.nav-links{display:flex;align-items:center;gap:24px}
|
|
.nav-links a{color:var(--fg2);text-decoration:none;font-size:13px;font-weight:510;transition:color .15s}
|
|
.nav-links a:hover{color:var(--fg)}
|
|
.nav-links .active{color:var(--accent)}
|
|
.nav-cta{padding:6px 16px!important;border-radius:var(--radius)!important;background:var(--accent)!important;color:#08090a!important;font-weight:590!important;font-size:13px!important}
|
|
.nav-cta:hover{background:var(--accent2)!important;color:#08090a!important}
|
|
.hamburger{display:none;flex-direction:column;gap:4px;cursor:pointer;padding:8px;background:none;border:none;z-index:101}
|
|
.hamburger span{display:block;width:20px;height:1.5px;background:var(--fg2);transition:.2s}
|
|
.hamburger.open span:nth-child(1){transform:rotate(45deg) translate(4px,4px)}
|
|
.hamburger.open span:nth-child(2){opacity:0}
|
|
.hamburger.open span:nth-child(3){transform:rotate(-45deg) translate(4px,-4px)}
|
|
.mobile-menu{display:none;position:fixed;top:var(--nav-h);left:0;right:0;bottom:0;background:var(--bg);z-index:99;padding:32px 20px;flex-direction:column;gap:20px}
|
|
.mobile-menu.open{display:flex}
|
|
.mobile-menu a{color:var(--fg2);text-decoration:none;font-size:18px;font-weight:510}
|
|
.mobile-menu .nav-cta{display:inline-block;text-align:center;margin-top:8px}
|
|
|
|
/* BUTTONS */
|
|
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:12px 24px;border-radius:var(--radius);font-size:14px;font-weight:590;text-decoration:none;transition:all .2s;cursor:pointer;border:none;font-family:inherit;letter-spacing:-0.01em}
|
|
.btn-primary{background:var(--accent);color:#08090a}
|
|
.btn-primary:hover{background:var(--accent2);transform:translateY(-1px);box-shadow:0 8px 24px var(--accent-glow)}
|
|
.btn-secondary{background:rgba(255,255,255,0.04);color:var(--fg);border:1px solid var(--border2)}
|
|
.btn-secondary:hover{background:rgba(255,255,255,0.07)}
|
|
.btn-lg{padding:14px 28px;font-size:15px}
|
|
|
|
/* SECTIONS */
|
|
section{padding:80px 20px}
|
|
@media(min-width:768px){section{padding:100px 32px}}
|
|
section.alt{background:var(--bg2);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
|
|
.container{max-width:1100px;margin:0 auto}
|
|
|
|
/* HERO */
|
|
.hero{min-height:35vh;display:flex;align-items:center;justify-content:center;text-align:center;padding:120px 20px 60px;position:relative;overflow:hidden}
|
|
.hero::before{content:'';position:absolute;top:-30%;left:-50%;width:200%;height:160%;background:radial-gradient(ellipse at 50% 0%,var(--accent-glow),transparent 50%);opacity:0.2;pointer-events:none}
|
|
.hero-content{position:relative;z-index:1;max-width:600px}
|
|
.hero-breadcrumb{font-size:12px;color:var(--fg3);margin-bottom:16px}
|
|
.hero-breadcrumb a{color:var(--fg3);text-decoration:none;transition:color .15s}
|
|
.hero-breadcrumb a:hover{color:var(--fg2)}
|
|
.hero h1{font-size:clamp(28px,5vw,44px);font-weight:700;line-height:1.1;letter-spacing:-0.03em;margin-bottom:12px}
|
|
.hero p{color:var(--fg2);font-size:15px;margin:0 auto;line-height:1.6;font-weight:400}
|
|
|
|
/* MISSION */
|
|
.mission-grid{display:grid;grid-template-columns:1fr;gap:20px;max-width:900px;margin:0 auto}
|
|
@media(min-width:640px){.mission-grid{grid-template-columns:repeat(3,1fr)}}
|
|
.mission-card{background:var(--bg2);border:1px solid var(--border);border-radius:var(--radius-xl);padding:32px 28px;text-align:center;transition:all .25s}
|
|
.mission-card:hover{border-color:var(--border2);transform:translateY(-2px)}
|
|
.mission-icon{font-size:32px;margin-bottom:16px}
|
|
.mission-card h3{font-size:16px;font-weight:590;margin-bottom:8px}
|
|
.mission-card p{font-size:13px;color:var(--fg2);line-height:1.6}
|
|
|
|
/* TRUST */
|
|
.trust-grid{display:grid;grid-template-columns:1fr;gap:16px;max-width:800px;margin:0 auto}
|
|
@media(min-width:640px){.trust-grid{grid-template-columns:repeat(2,1fr)}}
|
|
.trust-card{background:var(--bg2);border:1px solid var(--border);border-radius:var(--radius-xl);padding:28px;display:flex;gap:16px;align-items:flex-start;transition:all .25s}
|
|
.trust-card:hover{border-color:var(--border2)}
|
|
.trust-card .icon{font-size:24px;flex-shrink:0;margin-top:2px}
|
|
.trust-card h4{font-size:14px;font-weight:590;margin-bottom:4px}
|
|
.trust-card p{font-size:12px;color:var(--fg2);line-height:1.6}
|
|
|
|
/* TEAM */
|
|
.team-badge{max-width:700px;margin:0 auto;background:linear-gradient(135deg,rgba(240,160,48,0.04),rgba(139,92,246,0.04));border:1px solid var(--border2);border-radius:var(--radius-xl);padding:36px 40px;text-align:center}
|
|
.team-badge h3{font-size:20px;font-weight:700;margin-bottom:8px;letter-spacing:-0.01em}
|
|
.team-badge p{font-size:14px;color:var(--fg2);line-height:1.7;max-width:500px;margin:0 auto 16px}
|
|
.team-badge .location{font-size:12px;color:var(--fg3)}
|
|
|
|
/* SECTION HEADER */
|
|
.section-header{text-align:center;margin-bottom:48px}
|
|
.section-label{display:inline-block;font-size:11px;font-weight:590;text-transform:uppercase;letter-spacing:0.08em;color:var(--accent);margin-bottom:12px}
|
|
.section-header h2{font-size:clamp(24px,4vw,34px);font-weight:700;letter-spacing:-0.02em;margin-bottom:12px}
|
|
.section-header p{color:var(--fg2);font-size:14px;max-width:480px;margin:0 auto}
|
|
|
|
/* CTA */
|
|
.cta-band{text-align:center;padding:64px 20px;background:var(--bg2);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
|
|
.cta-band h2{font-size:clamp(22px,4vw,30px);font-weight:700;margin-bottom:12px;letter-spacing:-0.02em}
|
|
.cta-band p{color:var(--fg2);font-size:15px;margin-bottom:24px}
|
|
|
|
/* FOOTER */
|
|
footer{border-top:1px solid var(--border);padding:40px 20px;text-align:center}
|
|
.footer-grid{display:flex;justify-content:center;flex-wrap:wrap;gap:24px;margin-bottom:20px}
|
|
.footer-grid a{color:var(--fg3);text-decoration:none;font-size:12px;font-weight:510;transition:color .15s}
|
|
.footer-grid a:hover{color:var(--fg2)}
|
|
footer .copy{color:var(--fg3);font-size:11px}
|
|
|
|
@media(max-width:768px){
|
|
.nav-links{display:none}
|
|
.hamburger{display:flex}
|
|
.hero h1{font-size:28px}
|
|
section{padding:60px 16px}
|
|
.team-badge{padding:28px 24px}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<nav>
|
|
<div class="nav-inner">
|
|
<a href="/index.html" class="logo"><span class="logo-dot"></span>WalletPress</a>
|
|
<div class="nav-links">
|
|
<a href="/index.html">Home</a>
|
|
<a href="/features.html">Features</a>
|
|
<a href="/docs.html">Docs</a>
|
|
<a href="/about.html" class="active">About</a>
|
|
<a href="/buy.html" class="nav-cta">Buy — $49</a>
|
|
</div>
|
|
<button class="hamburger" onclick="document.getElementById('mobile-menu').classList.toggle('open');this.classList.toggle('open')" aria-label="Menu">
|
|
<span></span><span></span><span></span>
|
|
</button>
|
|
</div>
|
|
</nav>
|
|
<div class="mobile-menu" id="mobile-menu">
|
|
<a href="/index.html">Home</a>
|
|
<a href="/features.html">Features</a>
|
|
<a href="/docs.html">Docs</a>
|
|
<a href="/about.html">About</a>
|
|
<a href="/buy.html" class="nav-cta">Buy — $49</a>
|
|
</div>
|
|
|
|
<section class="hero">
|
|
<div class="hero-content">
|
|
<div class="hero-breadcrumb"><a href="/index.html">Home</a> / About</div>
|
|
<h1>Built for Developers Who Build on Chain</h1>
|
|
<p>WalletPress is a product of Rug Munch Media LLC — a Wyoming-based crypto infrastructure company. We build tools for the sovereign developer.</p>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="alt">
|
|
<div class="container reveal">
|
|
<div class="section-header">
|
|
<div class="section-label">Our Mission</div>
|
|
<h2>Why WalletPress Exists</h2>
|
|
<p>We got tired of stitching together wallet libraries, debugging chain-specific quirks, and paying per-API-call. So we built the tool we wanted.</p>
|
|
</div>
|
|
<div class="mission-grid">
|
|
<div class="mission-card">
|
|
<div class="mission-icon">🔑</div>
|
|
<h3>Sovereign Infrastructure</h3>
|
|
<p>Your server, your keys, your rules. No cloud dependency, no telemetry, no kill switch. You own the tool — forever.</p>
|
|
</div>
|
|
<div class="mission-card">
|
|
<div class="mission-icon">💰</div>
|
|
<h3>Fair Pricing</h3>
|
|
<p>$49 one-time. Not per wallet, not per month. We believe developer tools should be bought, not rented. Pay once, use forever.</p>
|
|
</div>
|
|
<div class="mission-card">
|
|
<div class="mission-icon">🔓</div>
|
|
<h3>No DRM</h3>
|
|
<p>Full source code included. No phone-home, no license validation, no activation servers. We trust developers — and we prove it.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section>
|
|
<div class="container reveal">
|
|
<div class="section-header">
|
|
<div class="section-label">Trust & Transparency</div>
|
|
<h2>What you can count on</h2>
|
|
</div>
|
|
<div class="trust-grid">
|
|
<div class="trust-card">
|
|
<div class="icon">🏛️</div>
|
|
<div>
|
|
<h4>Registered US Company</h4>
|
|
<p>Rug Munch Media LLC is a legally registered Wyoming limited liability company. We operate under US law with full compliance.</p>
|
|
</div>
|
|
</div>
|
|
<div class="trust-card">
|
|
<div class="icon">📜</div>
|
|
<div>
|
|
<h4>Full Source Code</h4>
|
|
<p>You receive every line of code. No obfuscation, no binary blobs. Audit it, modify it, extend it — it's yours.</p>
|
|
</div>
|
|
</div>
|
|
<div class="trust-card">
|
|
<div class="icon">🔄</div>
|
|
<div>
|
|
<h4>Lifetime Updates</h4>
|
|
<p>All future WalletPress updates are included. New chains, new features, security patches — you get them all, forever.</p>
|
|
</div>
|
|
</div>
|
|
<div class="trust-card">
|
|
<div class="icon">🛡️</div>
|
|
<div>
|
|
<h4>30-Day Refund</h4>
|
|
<p>Not satisfied? Full refund within 30 days, no questions asked. We stand behind our product.</p>
|
|
</div>
|
|
</div>
|
|
<div class="trust-card">
|
|
<div class="icon">🔒</div>
|
|
<div>
|
|
<h4>No Data Collection</h4>
|
|
<p>WalletPress makes zero external network calls. No analytics, no usage tracking, no error reporting. Your data is yours.</p>
|
|
</div>
|
|
</div>
|
|
<div class="trust-card">
|
|
<div class="icon">📡</div>
|
|
<div>
|
|
<h4>Offline-First</h4>
|
|
<p>Once deployed, WalletPress runs entirely offline. No internet required after initial setup. Air-gapped deployments supported.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="alt">
|
|
<div class="container reveal">
|
|
<div class="team-badge">
|
|
<h3>Rug Munch Media LLC</h3>
|
|
<p>We're a small, focused team building crypto infrastructure tools from Phnom Penh, Cambodia. We ship fast, price fairly, and don't do corporate bullshit.</p>
|
|
<p class="location">📍 Phnom Penh, Cambodia · Registered: Wyoming, USA · Est. 2025</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="cta-band">
|
|
<div class="container reveal">
|
|
<h2>Ready to stop renting your wallet infrastructure?</h2>
|
|
<p>30 chains. Full source code. $49, forever.</p>
|
|
<a href="/buy.html" class="btn btn-primary btn-lg">Buy WalletPress — $49</a>
|
|
</div>
|
|
</section>
|
|
|
|
<footer>
|
|
<div class="footer-grid">
|
|
<a href="/docs.html">Documentation</a>
|
|
<a href="/features.html">Features</a>
|
|
<a href="/buy.html">Pricing</a>
|
|
<a href="/contact.html">Contact</a>
|
|
<a href="/about.html">About</a>
|
|
</div>
|
|
<p class="copy">© 2026 Rug Munch Media LLC. Made in Wyoming.</p>
|
|
</footer>
|
|
|
|
<script>
|
|
const observer = new IntersectionObserver((entries) => {
|
|
entries.forEach(e => { if(e.isIntersecting) e.target.classList.add('visible'); });
|
|
}, { threshold: 0.1 });
|
|
document.querySelectorAll('.reveal').forEach(el => observer.observe(el));
|
|
</script>
|
|
</body>
|
|
</html>
|