fix
This commit is contained in:
@@ -110,7 +110,7 @@ export function TestimonialsSection({ content }: { content?: TestimonialsContent
|
||||
const data = content ?? defaultContent;
|
||||
|
||||
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">
|
||||
{/* Section Header */}
|
||||
<div className="text-center mb-6">
|
||||
|
||||
@@ -432,7 +432,7 @@ export function ProfileSettingsForm({
|
||||
{/* Row 1: First Name & Last Name */}
|
||||
<div className="grid grid-cols-1 sm:grid-cols-2 gap-5">
|
||||
<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
|
||||
</label>
|
||||
<input
|
||||
@@ -443,7 +443,7 @@ export function ProfileSettingsForm({
|
||||
/>
|
||||
</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
|
||||
</label>
|
||||
<input
|
||||
@@ -458,7 +458,7 @@ export function ProfileSettingsForm({
|
||||
{/* Career (only for agents, read-only - set during onboarding) */}
|
||||
{(session?.user as any)?.role === 'AGENT' && (
|
||||
<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
|
||||
</label>
|
||||
<input
|
||||
@@ -473,7 +473,7 @@ export function ProfileSettingsForm({
|
||||
{/* Row 2: Email & Phone */}
|
||||
<div className="grid grid-cols-1 sm:grid-cols-2 gap-5">
|
||||
<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
|
||||
</label>
|
||||
<input
|
||||
@@ -484,7 +484,7 @@ export function ProfileSettingsForm({
|
||||
/>
|
||||
</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
|
||||
</label>
|
||||
<input
|
||||
@@ -498,7 +498,7 @@ export function ProfileSettingsForm({
|
||||
|
||||
{/* Row 3: Location */}
|
||||
<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
|
||||
</label>
|
||||
<div className="relative">
|
||||
|
||||
Reference in New Issue
Block a user