feat: Add WordPress button, settings navigation, and placeholder pages
This commit is contained in:
19
admin-spa/src/routes/Settings/Payments.tsx
Normal file
19
admin-spa/src/routes/Settings/Payments.tsx
Normal file
@@ -0,0 +1,19 @@
|
||||
import React from 'react';
|
||||
import { __ } from '@/lib/i18n';
|
||||
|
||||
export default function SettingsPayments() {
|
||||
return (
|
||||
<div>
|
||||
<h1 className="text-2xl font-semibold mb-6">{__('Payment Settings')}</h1>
|
||||
<p className="text-muted-foreground mb-4">
|
||||
{__('Configure payment gateways and options.')}
|
||||
</p>
|
||||
|
||||
<div className="bg-muted/50 border rounded-lg p-6">
|
||||
<p className="text-sm text-muted-foreground">
|
||||
{__('Payment settings interface coming soon. This will include payment gateway configuration.')}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user