feat: Add agent edit form components and quick links, and update header and footer styling.

This commit is contained in:
pradeepkumar
2026-01-18 21:14:47 +05:30
parent 24a882460c
commit ba1594e24e
2 changed files with 7 additions and 7 deletions

View File

@@ -39,7 +39,7 @@ export function AgentHeader({ userName, userEmail }: AgentHeaderProps) {
<Link <Link
key={link.href} key={link.href}
href={link.href} href={link.href}
className="font-bold text-[#00293d] text-base hover:text-[#e58625] transition-colors" className="font-fractul font-bold text-[20px] leading-[24px] text-[#00293D] hover:text-[#e58625] transition-colors"
> >
{link.label} {link.label}
</Link> </Link>

View File

@@ -170,7 +170,7 @@ export function Footer() {
</div> </div>
{/* Logo and Social Section */} {/* Logo and Social Section */}
<div className="border-t border-[#00293d]/20"> <div className="border-t-2 border-[#F0F5FC]/20">
<div className="max-w-7xl mx-auto px-6 py-6"> <div className="max-w-7xl mx-auto px-6 py-6">
<div className="flex flex-col md:flex-row items-center justify-between gap-6"> <div className="flex flex-col md:flex-row items-center justify-between gap-6">
{/* Logo and Tagline */} {/* Logo and Tagline */}
@@ -182,7 +182,7 @@ export function Footer() {
height={40} height={40}
className="h-10 w-auto" className="h-10 w-auto"
/> />
<span className="text-sm text-[#00293d]"> <span className="font-serif font-normal text-[14px] leading-[19px] text-[#00293D]">
"Your Trusted Real Estate Partner" "Your Trusted Real Estate Partner"
</span> </span>
</div> </div>
@@ -205,11 +205,11 @@ export function Footer() {
</div> </div>
{/* Copyright Section */} {/* Copyright Section */}
<div className="border-t border-[#00293d]/20"> <div className="border-t-2 border-[#F0F5FC]/20">
<div className="max-w-7xl mx-auto px-6 py-4"> <div className="max-w-7xl mx-auto px-6 py-4">
<div className="flex flex-col md:flex-row items-center justify-between gap-4 text-sm"> <div className="flex flex-col md:flex-row items-center justify-between gap-4">
<p>Copyright © 2025 Your Agency Name. All rights reserved.</p> <p className="font-serif font-normal text-[15px] leading-[21px] text-[#00293D]">Copyright © 2025 Your Agency Name. All rights reserved.</p>
<Link href="/privacy-policy" className="hover:text-[#e58625] transition-colors"> <Link href="/privacy-policy" className="font-serif font-normal text-[15px] leading-[21px] text-[#00293D] hover:text-[#e58625] transition-colors">
Privacy Policy Privacy Policy
</Link> </Link>
</div> </div>