fix
This commit is contained in:
@@ -110,7 +110,7 @@ export function TestimonialsSection({ content }: { content?: TestimonialsContent
|
|||||||
const data = content ?? defaultContent;
|
const data = content ?? defaultContent;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<section className="py-12 md:py-16 bg-[#c5d6d6]">
|
<section className="py-12 md:py-16">
|
||||||
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
||||||
{/* Section Header */}
|
{/* Section Header */}
|
||||||
<div className="text-center mb-6">
|
<div className="text-center mb-6">
|
||||||
|
|||||||
@@ -432,7 +432,7 @@ export function ProfileSettingsForm({
|
|||||||
{/* Row 1: First Name & Last Name */}
|
{/* Row 1: First Name & Last Name */}
|
||||||
<div className="grid grid-cols-1 sm:grid-cols-2 gap-5">
|
<div className="grid grid-cols-1 sm:grid-cols-2 gap-5">
|
||||||
<div>
|
<div>
|
||||||
<label className="block text-[12px] font-medium text-[#00293D]/70 font-serif mb-2">
|
<label className="block text-[12px] font-bold text-[#00293D] font-serif mb-2">
|
||||||
First Name
|
First Name
|
||||||
</label>
|
</label>
|
||||||
<input
|
<input
|
||||||
@@ -443,7 +443,7 @@ export function ProfileSettingsForm({
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<label className="block text-[12px] font-medium text-[#00293D]/70 font-serif mb-2">
|
<label className="block text-[12px] font-bold text-[#00293D] font-serif mb-2">
|
||||||
Last Name
|
Last Name
|
||||||
</label>
|
</label>
|
||||||
<input
|
<input
|
||||||
@@ -458,7 +458,7 @@ export function ProfileSettingsForm({
|
|||||||
{/* Career (only for agents, read-only - set during onboarding) */}
|
{/* Career (only for agents, read-only - set during onboarding) */}
|
||||||
{(session?.user as any)?.role === 'AGENT' && (
|
{(session?.user as any)?.role === 'AGENT' && (
|
||||||
<div>
|
<div>
|
||||||
<label className="block text-[12px] font-medium text-[#00293D]/70 font-serif mb-2">
|
<label className="block text-[12px] font-bold text-[#00293D] font-serif mb-2">
|
||||||
Career
|
Career
|
||||||
</label>
|
</label>
|
||||||
<input
|
<input
|
||||||
@@ -473,7 +473,7 @@ export function ProfileSettingsForm({
|
|||||||
{/* Row 2: Email & Phone */}
|
{/* Row 2: Email & Phone */}
|
||||||
<div className="grid grid-cols-1 sm:grid-cols-2 gap-5">
|
<div className="grid grid-cols-1 sm:grid-cols-2 gap-5">
|
||||||
<div>
|
<div>
|
||||||
<label className="block text-[12px] font-medium text-[#00293D]/70 font-serif mb-2">
|
<label className="block text-[12px] font-bold text-[#00293D] font-serif mb-2">
|
||||||
Email Address
|
Email Address
|
||||||
</label>
|
</label>
|
||||||
<input
|
<input
|
||||||
@@ -484,7 +484,7 @@ export function ProfileSettingsForm({
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<label className="block text-[12px] font-medium text-[#00293D]/70 font-serif mb-2">
|
<label className="block text-[12px] font-bold text-[#00293D] font-serif mb-2">
|
||||||
Phone Number
|
Phone Number
|
||||||
</label>
|
</label>
|
||||||
<input
|
<input
|
||||||
@@ -498,7 +498,7 @@ export function ProfileSettingsForm({
|
|||||||
|
|
||||||
{/* Row 3: Location */}
|
{/* Row 3: Location */}
|
||||||
<div>
|
<div>
|
||||||
<label className="block text-[12px] font-medium text-[#00293D]/70 font-serif mb-2">
|
<label className="block text-[12px] font-bold text-[#00293D] font-serif mb-2">
|
||||||
Location
|
Location
|
||||||
</label>
|
</label>
|
||||||
<div className="relative">
|
<div className="relative">
|
||||||
|
|||||||
Reference in New Issue
Block a user