Update src/app/contact/page.tsx

This commit is contained in:
2026-03-03 08:43:07 +00:00
parent e647194d6d
commit 674e386818

View File

@@ -19,8 +19,7 @@ export default function ContactPage() {
const footerColumns = [ const footerColumns = [
{ {
title: "Platform", title: "Platform", items: [
items: [
{ label: "Browse Items", href: "/browse" }, { label: "Browse Items", href: "/browse" },
{ label: "Report Item", href: "/report" }, { label: "Report Item", href: "/report" },
{ label: "How It Works", href: "#how-it-works" }, { label: "How It Works", href: "#how-it-works" },
@@ -28,8 +27,7 @@ export default function ContactPage() {
], ],
}, },
{ {
title: "Community", title: "Community", items: [
items: [
{ label: "Success Stories", href: "#testimonials" }, { label: "Success Stories", href: "#testimonials" },
{ label: "Guidelines", href: "#" }, { label: "Guidelines", href: "#" },
{ label: "Help Center", href: "#" }, { label: "Help Center", href: "#" },
@@ -37,8 +35,7 @@ export default function ContactPage() {
], ],
}, },
{ {
title: "Company", title: "Company", items: [
items: [
{ label: "About Us", href: "#" }, { label: "About Us", href: "#" },
{ label: "Blog", href: "#" }, { label: "Blog", href: "#" },
{ label: "Careers", href: "#" }, { label: "Careers", href: "#" },
@@ -46,8 +43,7 @@ export default function ContactPage() {
], ],
}, },
{ {
title: "Legal", title: "Legal", items: [
items: [
{ label: "Privacy Policy", href: "#" }, { label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" }, { label: "Terms of Service", href: "#" },
{ label: "Cookie Policy", href: "#" }, { label: "Cookie Policy", href: "#" },
@@ -63,7 +59,7 @@ export default function ContactPage() {
borderRadius="pill" borderRadius="pill"
contentWidth="mediumSmall" contentWidth="mediumSmall"
sizing="mediumSizeLargeTitles" sizing="mediumSizeLargeTitles"
background="floatingGradient" background="circleGradient"
cardStyle="solid" cardStyle="solid"
primaryButtonStyle="primary-glow" primaryButtonStyle="primary-glow"
secondaryButtonStyle="radial-glow" secondaryButtonStyle="radial-glow"
@@ -94,25 +90,13 @@ export default function ContactPage() {
sideDescription="Common questions about contacting FindIt support and getting help with our platform." sideDescription="Common questions about contacting FindIt support and getting help with our platform."
faqs={[ faqs={[
{ {
id: "1", id: "1", title: "How can I get in touch with FindIt support?", content: "You can reach our support team via email at support@finditportal.com. We respond to all inquiries within 24 hours. You can also submit a support request through your dashboard or use our in-app messaging system."},
title: "How can I get in touch with FindIt support?",
content: "You can reach our support team via email at support@finditportal.com. We respond to all inquiries within 24 hours. You can also submit a support request through your dashboard or use our in-app messaging system.",
},
{ {
id: "2", id: "2", title: "What are your support hours?", content: "Our support team is available Monday through Friday, 9 AM to 6 PM EST. For urgent issues, you can submit a ticket anytime, and we'll respond as soon as possible. Emergency support for safety concerns is available 24/7."},
title: "What are your support hours?",
content: "Our support team is available Monday through Friday, 9 AM to 6 PM EST. For urgent issues, you can submit a ticket anytime, and we'll respond as soon as possible. Emergency support for safety concerns is available 24/7.",
},
{ {
id: "3", id: "3", title: "How do I report a bug or technical issue?", content: "If you encounter a technical problem, please report it through our in-app feedback form or email support@finditportal.com with details about the issue. Include screenshots or error messages if possible. We prioritize bug fixes based on severity."},
title: "How do I report a bug or technical issue?",
content: "If you encounter a technical problem, please report it through our in-app feedback form or email support@finditportal.com with details about the issue. Include screenshots or error messages if possible. We prioritize bug fixes based on severity.",
},
{ {
id: "4", id: "4", title: "Can I suggest a feature for FindIt?", content: "Absolutely! We love hearing from our community. Submit feature requests through your dashboard feedback section or email us directly. Your suggestions help us improve FindIt and better serve our users."},
title: "Can I suggest a feature for FindIt?",
content: "Absolutely! We love hearing from our community. Submit feature requests through your dashboard feedback section or email us directly. Your suggestions help us improve FindIt and better serve our users.",
},
]} ]}
useInvertedBackground={true} useInvertedBackground={true}
faqsAnimation="blur-reveal" faqsAnimation="blur-reveal"