29 lines
2.0 KiB
PHP
29 lines
2.0 KiB
PHP
@extends('admin.layout')
|
|
|
|
@section('content')
|
|
<div class="mb-8">
|
|
<h2 class="text-2xl font-bold text-white tracking-tight">System Configuration Overview</h2>
|
|
<p class="text-slate-400 mt-2">Manage dashboard settings and globally defined parameters.</p>
|
|
</div>
|
|
|
|
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
|
|
|
|
<a href="/admin/settings/procurement" class="glass rounded-xl p-6 group transition-all duration-300 hover:border-red-500/50 hover:bg-white/5 block">
|
|
<div class="w-12 h-12 rounded-lg bg-red-500/20 text-red-500 flex items-center justify-center mb-4 group-hover:scale-110 transition-transform">
|
|
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"/></svg>
|
|
</div>
|
|
<h3 class="text-lg font-bold text-white mb-2">Procurement Settings</h3>
|
|
<p class="text-sm text-slate-400">Configure thresholds, margins, and default variables for the procurement module.</p>
|
|
</a>
|
|
|
|
<a href="/admin/settings/ecommerce" class="glass rounded-xl p-6 group transition-all duration-300 hover:border-purple-500/50 hover:bg-white/5 block">
|
|
<div class="w-12 h-12 rounded-lg bg-purple-500/20 text-purple-500 flex items-center justify-center mb-4 group-hover:scale-110 transition-transform">
|
|
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 11V7a4 4 0 00-8 0v4M5 9h14l1 12H4L5 9z"/></svg>
|
|
</div>
|
|
<h3 class="text-lg font-bold text-slate-300 mb-2">E-Commerce Settings</h3>
|
|
<p class="text-sm text-slate-500">Configure WooCommerce API and Facebook Business credentials for the marketing dashboard.</p>
|
|
</a>
|
|
|
|
</div>
|
|
@endsection
|