Surface Google, Pinterest, Snapchat, and shipping status from the WordPress plugin with deep links to finish setup in WooCommerce. Co-authored-by: Cursor <cursoragent@cursor.com>
57 lines
2.8 KiB
PHP
57 lines
2.8 KiB
PHP
<x-user-layout>
|
|
<x-slot name="title">Settings</x-slot>
|
|
|
|
<x-settings.page description="Account links and preferences for Woo Manager.">
|
|
<x-settings.card title="Integrations">
|
|
<p class="text-sm text-slate-600">See which WooCommerce marketing and shipping extensions are installed on your store.</p>
|
|
<a href="{{ route('woo.integrations.index') }}"
|
|
class="mt-4 inline-flex items-center gap-2 text-sm font-medium text-indigo-600 hover:text-indigo-800">
|
|
View integrations
|
|
<span aria-hidden="true">→</span>
|
|
</a>
|
|
</x-settings.card>
|
|
|
|
<x-settings.card title="Stores & sync">
|
|
<p class="text-sm text-slate-600">Connect WooCommerce stores from the WordPress plugin, then manage them here.</p>
|
|
<a href="{{ route('woo.stores.index') }}"
|
|
class="mt-4 inline-flex items-center gap-2 text-sm font-medium text-indigo-600 hover:text-indigo-800">
|
|
Manage connected stores
|
|
<span aria-hidden="true">→</span>
|
|
</a>
|
|
</x-settings.card>
|
|
|
|
<x-settings.card title="Account">
|
|
<ul class="space-y-3">
|
|
<li>
|
|
<a href="{{ route('woo.wallet') }}"
|
|
class="flex items-center justify-between rounded-xl border border-slate-100 bg-slate-50 px-4 py-3 text-sm text-slate-700 hover:text-indigo-700">
|
|
<span>Wallet & payouts</span>
|
|
<span class="text-slate-400">→</span>
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="{{ route('account.team') }}"
|
|
class="flex items-center justify-between rounded-xl border border-slate-100 bg-slate-50 px-4 py-3 text-sm text-slate-700 hover:text-indigo-700">
|
|
<span>Team & access</span>
|
|
<span class="text-slate-400">→</span>
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="{{ ladill_account_url('account-settings') }}"
|
|
class="flex items-center justify-between rounded-xl border border-slate-100 bg-slate-50 px-4 py-3 text-sm text-slate-700 hover:text-indigo-700">
|
|
<span>Account settings</span>
|
|
<span class="text-slate-400">→</span>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</x-settings.card>
|
|
|
|
<x-settings.card title="Sign out">
|
|
<form method="POST" action="{{ route('logout') }}">
|
|
@csrf
|
|
<button type="submit" class="text-sm font-medium text-red-600 hover:text-red-800">Sign out</button>
|
|
</form>
|
|
</x-settings.card>
|
|
</x-settings.page>
|
|
</x-user-layout>
|