feat: Implement payment success confirmation page and testimonials form with new icons.
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
'use client';
|
||||
|
||||
import { SettingsSidebar } from '@/components/settings';
|
||||
import { PaymentSuccessForm } from '@/components/settings/PaymentSuccessForm';
|
||||
|
||||
export default function PaymentConfirmationPage() {
|
||||
return (
|
||||
<div className="flex flex-col lg:flex-row gap-6">
|
||||
{/* Left Sidebar */}
|
||||
<SettingsSidebar basePath="/agent/settings" />
|
||||
|
||||
{/* Main Content */}
|
||||
<div className="flex-1">
|
||||
<PaymentSuccessForm />
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
@@ -1,6 +1,7 @@
|
||||
'use client';
|
||||
|
||||
import { SettingsSidebar } from '@/components/settings';
|
||||
import { TestimonialsForm } from '@/components/settings/TestimonialsForm';
|
||||
|
||||
export default function TestimonialsPage() {
|
||||
return (
|
||||
@@ -10,15 +11,7 @@ export default function TestimonialsPage() {
|
||||
|
||||
{/* Main Content */}
|
||||
<div className="flex-1">
|
||||
<div className="border border-[#00293d]/10 rounded-[15px] bg-white p-6">
|
||||
<h2 className="font-fractul font-bold text-[20px] text-[#00293D] mb-4">
|
||||
Add Testimonials
|
||||
</h2>
|
||||
<div className="border-b border-[#00293D]/10 mb-6" />
|
||||
<p className="font-serif text-[14px] text-[#00293D]/70">
|
||||
Testimonials management coming soon.
|
||||
</p>
|
||||
</div>
|
||||
<TestimonialsForm />
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user