Files
ospab.host/ospabhost/src/pages/dashboard/billing.tsx

18 lines
517 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import Navbar from "../../components/Navbar";
const Billing: React.FC = () => {
return (
<div className="min-h-screen bg-gray-50">
<Navbar />
<section className="pt-32 px-4 container mx-auto">
<h1 className="text-3xl font-bold mb-6">Баланс и платежи</h1>
<div className="bg-white rounded-3xl shadow p-6">
<p>Информация о платежах появится здесь.</p>
</div>
</section>
</div>
);
};
export default Billing;