20 lines
623 B
TypeScript
20 lines
623 B
TypeScript
import React from 'react';
|
|
import { __ } from '@/lib/i18n';
|
|
|
|
export default function SettingsGeneral() {
|
|
return (
|
|
<div>
|
|
<h1 className="text-2xl font-semibold mb-6">{__('General Settings')}</h1>
|
|
<p className="text-muted-foreground mb-4">
|
|
{__('Configure general store settings including store address, currency, and more.')}
|
|
</p>
|
|
|
|
<div className="bg-muted/50 border rounded-lg p-6">
|
|
<p className="text-sm text-muted-foreground">
|
|
{__('Settings interface coming soon. This will replicate WooCommerce general settings.')}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|