Update src/app/contact/page.tsx

This commit is contained in:
2026-03-06 10:51:21 +00:00
parent fc833ea227
commit d39e666d9e

View File

@@ -58,16 +58,14 @@ export default function ContactPage() {
copyrightText="© 2025 PropSales. All rights reserved."
columns={[
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Our Team", href: "/about" },
{ label: "Careers", href: "#" },
],
},
{
title: "Properties",
items: [
title: "Properties", items: [
{ label: "All Projects", href: "/projects" },
{ label: "Ongoing", href: "/projects" },
{ label: "Completed", href: "/projects" },
@@ -75,8 +73,7 @@ export default function ContactPage() {
],
},
{
title: "Support",
items: [
title: "Support", items: [
{ label: "Contact", href: "/contact" },
{ label: "FAQ", href: "#" },
{ label: "Privacy Policy", href: "#" },
@@ -88,4 +85,4 @@ export default function ContactPage() {
</div>
</ThemeProvider>
);
}
}