File size: 800 Bytes
be02369
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import React from 'react';

// ====================================================================================
// NOTE: This component is no longer used in the application.
// The app now uses a secret-based login system. See LoginView.tsx.
// This file is kept to avoid breaking imports but its content is non-functional.
// ====================================================================================

const PaywallView: React.FC = () => {
    return (
        <div className="flex items-center justify-center h-screen bg-stone-100">
            <div className="text-center p-8">
                <h1 className="text-2xl font-bold">Paywall Deprecated</h1>
                <p>This view is currently not in use.</p>
            </div>
        </div>
    );
};

export default PaywallView;