Proxcop.com

Proxcop.com

Conversion-focused landing page for a private sneakers automation Discord community. The site covers all alert types (Nike, Adidas, SNKRS, Foot Locker), marketplace automation (Vinted, Leboncoin, eBay), in-store drop intel, release calendars, and price-error hunting. Built with Vue 3, Vite SSG, SCSS, and deployed on Cloudflare Workers for sub-50ms global TTFB. Scroll animations run entirely through a custom Intersection Observer composable — no external animation library.

Overview

Proxcop is the public-facing showcase website for a private sneakers automation Discord community. The platform aggregates real-time stock intelligence from the most in-demand sneaker retailers — Nike, Adidas, SNKRS, Foot Locker, and more — and surfaces them to members as instant alerts. Beyond alerts, the site serves as the community's entry point: members learn what the group does, how it works, and how to subscribe via the integrated Whop storefront link.

The site was designed to convert visitors quickly — one clear hero, feature proof points, social proof from real members, and a single CTA. Performance was a priority: static-site generation with Vite SSG, WebP images with lazy loading, and deployment on Cloudflare Workers keep load times well under a second globally.

Screenshots

Hero section — desktop
Features grid
Mobile view

Key Features

Instant Stock Alerts

Real-time notifications the moment high-demand sneakers restock or drop on Nike, Adidas, Foot Locker, and more. Members are notified before the product page even loads for regular users.

📅

Release Calendars

Comprehensive upcoming release guides with dates, retail prices, and expected resale value. Members prepare their setups in advance and never miss a drop.

📈

Market Analysis

Historical data and live resale tracking from StockX, GOAT, and Vinted. Price evolution charts help members decide when to buy, hold, or sell their pairs.

🛒

Marketplace Automation

Monitors Vinted, Leboncoin, and eBay for mispriced listings. Members get alerts on price errors and below-market deals before the broader market notices.

🏪

In-Store Drop Coverage

Physical store drop information including location, queue time estimates, and staff allocations — critical for limited regional releases not available online.

👥

Active Community

Private Discord server with moderators, verified buyers, and success channels. Members share wins, cooking advice, and early intel from physical stores.

Tech Stack

Vue 3Composition API, defineAsyncComponent for code splitting, Suspense for async sections
Vite + Vite SSGStatic site generation — pre-rendered HTML for instant first paint, no JS required to show content
SCSSCustom design system with variables, responsive mixins (mobile / tablet / desktop / wide), and easing tokens
Cloudflare WorkersStatic asset hosting via wrangler — global edge CDN, <50ms TTFB worldwide
Intersection ObserverCustom useAnimation() composable triggers scroll-based entry animations without any animation library

Architecture Highlights

Static-First Performance

Vite SSG pre-renders every page at build time. Visitors receive complete HTML immediately — no blank screens, no layout shift. Combined with Cloudflare's edge network, the site serves from the closest data center to each visitor globally.

Lazy-Loaded Sections

Below-the-fold sections (Success stories, Reviews, Terms modals) are loaded with defineAsyncComponent() and wrapped in Vue <Suspense>. Initial JS bundle is kept lean — users only download code for what they scroll to.

Zero-Dependency Animation

All scroll-triggered animations use a custom useAnimation() composable built on the native Intersection Observer API. No GSAP, no AOS, no external library — saving ~80KB from the bundle while achieving smooth, performant entrance animations on every element.