feat: Add WordPress button, settings navigation, and placeholder pages

This commit is contained in:
dwindown
2025-11-05 10:27:16 +07:00
parent 7c24602965
commit 12e982b3e5
6 changed files with 122 additions and 19 deletions

View 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>
);
}