by Fused Gaming
Professional security audits for blockchain gaming and DeFi projects.
Website • Documentation • Blog • Contact
Version: 0.11.0 (MVP - Advanced Integration) Release Date: February 2026 Status: Active Development 🚀
MVP Launch Progress: ██████████████████░░ 90%
✅ Phase 1: Foundation & Branding [████████████████████] 100%
✅ Phase 2: Core Pages & Components [████████████████████] 100%
✅ Phase 3: UI/UX Polish & Mobile [████████████████████] 100%
✅ Phase 4: Backend & API Integration [██████████████████░░] 90%
🔄 Phase 5: Production Launch [████░░░░░░░░░░░░░░░░] 20%
- ✅ Dynamic blog post OG images with design tokens
- ✅ Wildcard OG fallback route for undefined endpoints
- ✅ Blog metadata registry for scalable post management
- ✅ Booking form with custom date/time pickers
- ✅ Form design tokens documentation
- 🚀 Production-ready booking API endpoint
| Feature | Status | Completion |
|---|---|---|
| Homepage | ✅ Complete | 100% |
| Services Page | ✅ Complete | 100% |
| Pricing Page | ✅ Complete | 100% |
| Contact Form | ✅ Complete | 100% |
| Booking Form | ✅ Complete | 100% |
| FAQ Page | ✅ Complete | 100% |
| About Page | ✅ Complete | 100% |
| Referrals Page | ✅ Complete | 100% |
| Legal Pages | ✅ Complete | 100% |
| Get Help Page | ✅ Complete | 100% |
| Blog Pages | ✅ Complete | 100% |
| Blog OG Images | ✅ Complete | 100% |
| Design System | ✅ Complete | 100% |
| Animation System | ✅ Complete | 100% |
| Responsive Design | ✅ Complete | 100% |
| SEO Optimization | ✅ Complete | 100% |
| Analytics Integration | ✅ Complete | 100% |
| Security Headers | ✅ Complete | 100% |
| CORS Configuration | ✅ Complete | 100% |
| Live Chat Support | ✅ Complete | 100% |
| Discord Webhooks | ✅ Complete | 100% |
| OG Images (Generic) | ✅ Complete | 100% |
| OG Images (Wildcard) | ✅ Complete | 100% |
| OG Images (Blog Dynamic) | ✅ Complete | 100% |
| Custom Date/Time Pickers | ✅ Complete | 100% |
| Form Design Tokens | ✅ Complete | 100% |
| Booking API Endpoint | ✅ Complete | 100% |
| API Endpoints | 🔄 In Progress | 60% |
| Spam Protection | 🔄 In Progress | 30% |
| Email System | 🔄 In Progress | 25% |
| CRM Integration | ⏳ Planned | 0% |
| Client Dashboard | ⏳ Planned | 0% |
| Report Viewer | ⏳ Planned | 0% |
| Payment Integration | ⏳ Planned | 0% |
VLN (Vulnerability Lab Network) is Fused Gaming's elite smart contract security research platform, specializing in:
- 🔐 Smart Contract Security Audits - Line-by-line code review with CVSS 3.1 risk scoring
- 🔬 Vulnerability Research - Proactive threat discovery and responsible disclosure
- 🎮 Blockchain Gaming Infrastructure - Specialized security for gaming protocols
- 📊 DeFi Protocol Analysis - Economic attack modeling and exploit detection
- 🛡️ Penetration Testing - Red team simulation and infrastructure hardening
- ⚡ Emergency Incident Response - 24/7 exploit mitigation and forensic analysis
- 47 Critical vulnerabilities discovered and remediated
- 100% Post-audit success rate (zero breaches for clients following our recommendations)
- $5.2M in stolen funds recovered through forensic analysis
- 12 years of experience in high-stakes security
VLN provides comprehensive resources across multiple platforms:
| Platform | Purpose | URL |
|---|---|---|
| 📚 Docs | Technical documentation, API references, integration guides | docs.vln.gg |
| 🎓 Education | Tutorials, courses, security research training | edu.vln.gg |
| 🎨 Design | Design system, brand assets, component library | design.vln.gg |
| ❓ Help | FAQs, support resources, troubleshooting | help.vln.gg |
| 📊 Status | Platform status, uptime monitoring | status.vln.gg |
| 📰 Blog | Security research, vulnerability disclosures | blog.vln.gg |
Node.js: ≥ 20.x
pnpm: ≥ 9.x
Git: Latest version# Clone the repository
git clone https://github.com/Fused-Gaming/vln.git
cd vln
# Install dependencies
pnpm install
# Run development server
pnpm dev
# Open browser
open http://localhost:3000pnpm dev # Start development server
pnpm build # Production build
pnpm start # Run production server
pnpm lint # Run ESLint
pnpm type-check # TypeScript type checkingThe site will be available at http://localhost:3000
vln/
├── app/ # Next.js 15 App Router
│ ├── (site)/ # Marketing pages group
│ ├── about/page.tsx # About page
│ ├── blog/page.tsx # Blog (placeholder)
│ ├── contact/page.tsx # Contact form
│ ├── faq/page.tsx # FAQ page
│ ├── get-help/page.tsx # Support page
│ ├── pricing/page.tsx # Pricing tiers
│ ├── privacy/page.tsx # Privacy policy
│ ├── refunds/page.tsx # Refund policy
│ ├── services/page.tsx # Services overview
│ ├── terms/page.tsx # Terms of service
│ ├── layout.tsx # Root layout
│ ├── page.tsx # Homepage
│ ├── not-found.tsx # Custom 404
│ ├── providers.tsx # React context providers
│ ├── sitemap.ts # Dynamic sitemap
│ └── globals.css # Global styles
│
├── components/ # React components
│ ├── animations/ # Animation components
│ │ ├── css-fade.tsx
│ │ └── stagger-fade.tsx
│ ├── layout/ # Layout components
│ │ ├── header.tsx # Main navigation
│ │ └── footer.tsx # Site footer
│ ├── ui/ # UI components
│ │ ├── button.tsx
│ │ ├── cookie-consent.tsx
│ │ └── scroll-to-top.tsx
│ └── vln/ # VLN brand components
│ ├── ic-board-background.tsx
│ ├── stat-card.tsx
│ └── testimonial.tsx
│
├── lib/ # Utilities and helpers
│ └── animation-context.tsx # Animation state management
│
├── public/ # Static assets
│ ├── vln-logo-dark.svg
│ └── vln-logo-light.svg
│
├── docs/ # Documentation
│ ├── architecture/ # System architecture
│ ├── design/ # Design specifications
│ ├── getting-started/ # Onboarding guide
│ └── guides/ # Development guides
│
├── .github/
│ └── workflows/ # CI/CD workflows
│
├── middleware.ts # Next.js middleware (CORS, security)
├── next.config.ts # Next.js configuration
├── tailwind.config.ts # Tailwind CSS configuration
├── tsconfig.json # TypeScript configuration
├── CHANGELOG.md # Version history
├── ROADMAP.md # Feature roadmap
└── CLAUDE.md # AI development guidelines
Comprehensive OG image infrastructure for professional link previews across all platforms:
- Auto-generates OG images for any undefined route
- Uses VLN design tokens (sage glow, typography, spacing)
- Ensures brand consistency across all new pages
- Zero additional configuration required
- Extracts blog post title, description, category from metadata
- Renders custom visual with accent colors per post
- Shows publication dates and category badges
- Intelligent title truncation for visual balance
- Centralized blog post management
- Type-safe slug-to-metadata mapping
- Extensible for future posts
- Enables dynamic OG generation, sitemap, and RSS feeds
Example Generated OG Images:
/blog/top-smart-contract-vulnerabilities-defi
→ "Top Smart Contract Vulnerabilities Found in Bay Area DeFi Projects"
→ Sage green accent | Security Research category | Jan 15, 2025
/blog/web3-security-checklist-bay-area-startups
→ "Web3 Security Checklist: Essential Practices for Bay Area Startups"
→ Blue accent | Best Practices category | Feb 10, 2025
Complete booking infrastructure for client consultations:
- Business day validation (excludes weekends, federal holidays)
- Mobile-optimized calendar (48px touch targets minimum)
- Keyboard navigation support (arrow keys, Enter)
- Visual indicators for disabled dates
- Business hours enforcement (11 AM - 6 PM PT)
- 30-minute interval enforcement
- Mobile scroll optimization
- Desktop horizontal selector
- Full server-side validation
- Federal holiday and business day verification
- Business hours constraint enforcement
- Error handling and responses
- Comprehensive input state system (default, focus, error, success, disabled)
- Responsive spacing (mobile-first)
- WCAG AAA accessibility compliance
- Smooth transitions and interactions
| Color | Hex | Usage |
|---|---|---|
| Matte Charcoal | #0f0f0f | Background base |
| Sage Green | #a6c3a7 | Primary accent, CTAs |
| Warm Blue-Gray | #aab7c8 | Secondary accent |
| Amber | #f59e0b | Warnings, emergency |
| Purple | #a855f7 | Premium, enterprise |
| Soft Glow White | #f5f5f5 | Text, highlights |
- Primary Font: Inter (sans-serif)
- Monospace Font: JetBrains Mono (technical content)
- Font Sizes: Responsive scale from 14px to 72px
/* Colors */--vln-bg:#0f0f0f;
--vln-bg-light:#1a1a1a;
--vln-sage:#a6c3a7;
--vln-bluegray:#aab7c8;
--vln-amber:#f59e0b;
--vln-purple:#a855f7;
--vln-white:#f5f5f5;
/* Spacing & Layout */--vln-radius:12px;
--vln-container:1280px;
/* Effects */--glow-sage:0020pxrgba(166,195,167,0.4);
--glow-blue:0020pxrgba(170,183,200,0.4);
--glow-amber:0020pxrgba(245,158,11,0.4);
--glow-purple:0020pxrgba(168,85,247,0.4);| Technology | Version | Purpose |
|---|---|---|
| Next.js | 15.5.6 | React framework with App Router |
| React | 18.3+ | UI library |
| TypeScript | 5.x | Type safety |
| Tailwind CSS | 3.4+ | Utility-first styling |
| Tool | Purpose |
|---|---|
| pnpm | Package management |
| ESLint | Code quality |
| Prettier | Code formatting |
| GitHub Actions | CI/CD pipeline |
| Service | Purpose |
|---|---|
| Vercel | Hosting & deployment |
| Cloudflare | Web analytics, CDN |
| PostgreSQL | Database (planned) |
| Redis | Caching (planned) |
Following the Fused Gaming integration-first branching model:
main (production)
└── integration/vln (active integration)
├── feature/feature-name
├── fix/bug-description
├── docs/documentation-update
└── chore/maintenance-task
# Start from integration branch
git checkout integration/vln
git pull
# Create feature branch
git checkout -b feature/my-awesome-feature
# Make changes and commit
git add .
git commit -m "feat(scope): add awesome feature- Detailed description of changes- Why this change was made- Any breaking changes🤖 Generated with [Claude Code](https://claude.com/claude-code)Co-Authored-By: Claude <noreply@anthropic.com>"# Push and create PR
git push -u origin feature/my-awesome-feature- ✅ Create PR targeting
integration/vln(NOTmain) - ✅ Ensure build passes (
pnpm build) - ✅ Lint check passes (
pnpm lint) - ✅ Write clear description with screenshots if UI changes
- ✅ Request review from team members
- ✅ Merge only after approval and passing checks
Follow Conventional Commits:
feat(scope): add new feature
fix(scope): correct bug
docs(scope): update documentation
style(scope): code formatting
refactor(scope): code restructuring
test(scope): add tests
chore(scope): routine task
perf(scope): performance improvement
Examples:
feat(pricing): add enterprise tier pricing table
fix(header): resolve mobile menu z-index issue
docs(api): document authentication endpoints
chore(deps): update Next.js to 15.5.6VLN operates under enterprise-grade security principles:
Application Security
- ✅ HTTPS-only (HSTS enabled)
- ✅ Content Security Policy (CSP)
- ✅ XSS protection headers
- ✅ CSRF protection
- ✅ Rate limiting
- ✅ Input validation and sanitization
Infrastructure Security
- ✅ Vercel Edge Network (DDoS protection)
- ✅ Cloudflare WAF
- ✅ Automated security scanning
- ✅ Dependency vulnerability monitoring
- ✅ Secret management (environment variables)
Data Security
- ✅ Encrypted data transmission (TLS 1.3)
- ⏳ Encrypted data at rest (planned)
- ⏳ GDPR compliance (in progress)
- ⏳ Data retention policies (planned)
Operational Security
- ✅ Automated backups
- ✅ Monitoring and alerting
- ✅ Incident response procedures
- ✅ Access control and authentication
VLN operates under strict responsible disclosure principles:
- ✅ Educational & Research Use Only
- ✅ Test on Testnets (Sepolia, Goerli, etc.)
- ✅ Responsible Disclosure to affected parties before public release
- ✅ 90-Day Disclosure Timeline for critical vulnerabilities
- ❌ NO Mainnet Exploitation without explicit authorization
- ❌ NO Malicious Use or unauthorized access
All research conducted to improve blockchain security and for educational purposes.
- Email: security@vln.gg
- Emergency: emergency@vln.gg
- PGP Key: Available on request
| Category | Score | Status |
|---|---|---|
| Performance | ≥ 90 | ✅ 92 |
| Accessibility | 100 | ✅ 100 |
| Best Practices | 100 | ✅ 100 |
| SEO | 100 | ✅ 100 |
| Metric | Target | Actual |
|---|---|---|
| LCP (Largest Contentful Paint) | < 2.5s | ✅ 1.8s |
| FID (First Input Delay) | < 100ms | ✅ 45ms |
| CLS (Cumulative Layout Shift) | < 0.1 | ✅ 0.02 |
| TTFB (Time to First Byte) | < 600ms | ✅ 320ms |
- 🌐 Website: vln.gg
- 📧 Email: info@vln.gg
- 🚨 Emergency: emergency@vln.gg
- 💬 Telegram: @vlngg
- 🐙 GitHub: github.com/Fused-Gaming/vln
- ❓ Support: help.vln.gg
For detailed documentation, see:
- Getting Started Guide - Setup and onboarding
- Architecture Documentation - System design and security
- Component Library - Design system reference
- API Documentation - API endpoints and integration
- CHANGELOG.md - Version history and release notes
- ROADMAP.md - Feature roadmap and timeline
- CLAUDE.md - AI development guidelines
- docs.vln.gg - Complete online documentation
- edu.vln.gg - Educational tutorials and courses
- design.vln.gg - Design system and component library
Fused Gaming is a blockchain gaming and security research organization with 12 years of experience specializing in:
- 🔐 Smart contract security audits (47+ critical vulnerabilities discovered)
- 🔬 Vulnerability research & responsible disclosure
- 🎮 Blockchain gaming infrastructure security
- 📊 DeFi protocol analysis and economic attack modeling
- ⚡ 24/7 emergency incident response ($5.2M recovered in stolen funds)
Learn More: vln.gg
Proprietary License - © 2025 VLN - Fused Gaming. All rights reserved.
This is proprietary software. Unauthorized copying, modification, distribution, or use of this software is strictly prohibited.
For licensing inquiries, contact: info@vln.gg
- Built with Next.js
- Styled with Tailwind CSS
- Deployed on Vercel
- Analytics by Cloudflare
- AI-assisted development with Claude Code