Refactor: Update tick-circle-icon.svg to use a stroked circle and adjusted tick mark path and styling.

This commit is contained in:
pradeepkumar
2026-02-12 06:03:00 +05:30
parent 4ddb7552db
commit 6be8a314e9
9 changed files with 247 additions and 3 deletions

View File

@@ -0,0 +1,18 @@
'use client';
import { SettingsSidebar } from '@/components/settings';
import { PaymentCheckoutForm } from '@/components/settings/PaymentCheckoutForm';
export default function CheckoutPage() {
return (
<div className="flex flex-col lg:flex-row gap-6">
{/* Left Sidebar */}
<SettingsSidebar basePath="/agent/settings" />
{/* Main Content */}
<div className="flex-1">
<PaymentCheckoutForm />
</div>
</div>
);
}