feat: add NewsPaymentPage component and error boundary for payment route

This commit is contained in:
fredy.siswanto
2025-03-12 00:06:43 +07:00
parent 56d9081b4f
commit b9fb1112ae
2 changed files with 50 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import { Card } from '~/components/ui/card'
export const NewsPaymentPage = () => {
return (
<div>
<div className="sm-max:mx-5 relative">
<Card>
<h1>Payment</h1>
</Card>
</div>
</div>
)
}