Yuki / views /PaywallView.tsx
Severian's picture
Upload 43 files
be02369 verified
raw
history blame contribute delete
800 Bytes
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;