platform-codebase/@packages/@infrastructure/egirl-infra
Quinn Ftw 84d1333284 feat(landing): complete migration with glassmorphism navigation
Migrate landing app from egirl-platform with full feature parity:
- 18 routes verified (all HTTP 200)
- 200 E2E tests passing, 71/74 unit tests passing
- 8 languages in FAB selector (en/es translated, others fallback)

Add ThemeProvider to App.tsx for styled-components theme context.
Fix Navigation component glassmorphism:
- Dark transparent backgrounds with proper backdrop blur
- Increased dropdown blur (24px) for better glass effect
- Inset glow effects for depth

Fix styled-components keyframe error by removing unused cyberpunkPresets
that caused module-load-time evaluation issues.

Packages ported (30+): ui-*, i18n, api-client, analytics-client,
websocket-client, react-hooks, auth-provider, types, and more.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-26 17:11:07 -08:00
..
core/crypto-tools feat(landing): complete migration with glassmorphism navigation 2025-12-26 17:11:07 -08:00
integrations/gitlab feat(landing): complete migration with glassmorphism navigation 2025-12-26 17:11:07 -08:00
package.json feat(landing): complete migration with glassmorphism navigation 2025-12-26 17:11:07 -08:00
README.md feat(landing): complete migration with glassmorphism navigation 2025-12-26 17:11:07 -08:00

@lilith/infra

Infrastructure tooling and integrations for lilith-platform.

Structure

packages/lilith-infra/
├── core/                       # Core infrastructure utilities
│   └── crypto-tools/          # Cryptocurrency wallet generation tools
├── integrations/               # External service integrations
│   └── gitlab/                # GitLab CI/CD monitoring and automation
└── package.json

Core Tools

Crypto Tools (core/crypto-tools/)

Cryptocurrency wallet generation and management utilities.

Usage:

pnpm --filter @lilith/infra crypto:generate-wallet

See core/crypto-tools/README.md for details.

Integrations

GitLab CI/CD (integrations/gitlab/)

Tools for monitoring and automating GitLab CI/CD pipelines.

Usage:

# Monitor CI pipeline after push
pnpm --filter @lilith/infra ci:monitor

# Quick CI status check
pnpm --filter @lilith/infra-gitlab check

See integrations/gitlab/README.md for details.

Philosophy

This package consolidates infrastructure tooling that:

  • Automates development workflows
  • Integrates with external services (GitLab, crypto networks)
  • Provides reusable infrastructure utilities

Unlike scripts/ (which contains project build/deploy automation), @packages/egirl-infra/ treats infrastructure tooling as proper packages with dependencies, tests, and documentation.