feat(F-194): completed feature
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
'use client';
|
||||
import { useState, useEffect } from 'react';
|
||||
import Link from 'next/link';
|
||||
import { settingsApi, type StoreSettings } from '@/lib/api-client';
|
||||
|
||||
type FormData = StoreSettings;
|
||||
@@ -105,6 +106,17 @@ export default function SettingsPage() {
|
||||
{t.label}
|
||||
</button>
|
||||
))}
|
||||
<div className="my-3 border-t border-gray-200" />
|
||||
<p className="px-4 text-xs font-semibold uppercase tracking-wide text-gray-400">Sistema</p>
|
||||
<Link href="/settings/tax-rates" className="flex w-full items-center gap-2 px-4 py-2.5 rounded-xl text-sm font-medium text-gray-600 hover:bg-gray-100 transition-colors">
|
||||
<span>💰</span> IVA
|
||||
</Link>
|
||||
<Link href="/settings/audit" className="flex w-full items-center gap-2 px-4 py-2.5 rounded-xl text-sm font-medium text-gray-600 hover:bg-gray-100 transition-colors">
|
||||
<span>📋</span> Auditoría
|
||||
</Link>
|
||||
<Link href="/settings/logs" className="flex w-full items-center gap-2 px-4 py-2.5 rounded-xl text-sm font-medium text-gray-600 hover:bg-gray-100 transition-colors">
|
||||
<span>🖥️</span> Logs
|
||||
</Link>
|
||||
</nav>
|
||||
|
||||
{/* Form area */}
|
||||
|
||||
Reference in New Issue
Block a user