<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>TickerPerks - Plaid Integration</title>
    <style>
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }
        .container {
            text-align: center;
            padding: 2rem;
            max-width: 600px;
        }
        .logo {
            font-size: 4rem;
            margin-bottom: 1rem;
        }
        h1 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        p {
            font-size: 1.1rem;
            line-height: 1.6;
            opacity: 0.9;
        }
        .info {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 1.5rem;
            border-radius: 12px;
            margin-top: 2rem;
            text-align: left;
        }
        .info h2 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }
        .info ul {
            list-style: none;
            padding: 0;
        }
        .info li {
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .info li:last-child {
            border-bottom: none;
        }
        code {
            background-color: rgba(0, 0, 0, 0.2);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-family: 'Courier New', monospace;
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="logo">🔗</div>
        <h1>TickerPerks Plaid Integration</h1>
        <p>This domain is used for Plaid OAuth redirects and mobile app deep linking.</p>
        
        <div class="info">
            <h2>Available Endpoints:</h2>
            <ul>
                <li><code>/plaid</code> - OAuth redirect handler</li>
                <li><code>/.well-known/apple-app-site-association</code> - iOS Universal Links</li>
                <li><code>/.well-known/assetlinks.json</code> - Android App Links</li>
            </ul>
        </div>
        
        <p style="margin-top: 2rem; font-size: 0.9rem; opacity: 0.7;">
            © 2025 TickerPerks. All rights reserved.
        </p>
    </div>
</body>
</html>

