Update src/app/contact/page.tsx

This commit is contained in:
2026-03-03 12:56:54 +00:00
parent ae2dcdb76f
commit 45b507bc32

View File

@@ -20,8 +20,7 @@ export default function ContactPage() {
const footerColumns = [
{
title: "Product",
items: [
title: "Product", items: [
{ label: "Buy", href: "#buy" },
{ label: "Sell", href: "#sell" },
{ label: "Services", href: "#services" },
@@ -29,8 +28,7 @@ export default function ContactPage() {
],
},
{
title: "Community",
items: [
title: "Community", items: [
{ label: "How It Works", href: "#how-it-works" },
{ label: "Testimonials", href: "/#testimonials" },
{ label: "FAQ", href: "#faq" },
@@ -38,8 +36,7 @@ export default function ContactPage() {
],
},
{
title: "Support",
items: [
title: "Support", items: [
{ label: "Contact Us", href: "/contact" },
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
@@ -55,7 +52,7 @@ export default function ContactPage() {
borderRadius="pill"
contentWidth="mediumSmall"
sizing="mediumLarge"
background="grid"
background="circleGradient"
cardStyle="gradient-bordered"
primaryButtonStyle="shadow"
secondaryButtonStyle="layered"
@@ -66,9 +63,7 @@ export default function ContactPage() {
navItems={navItems}
brandName="CampusHub"
button={{
text: "Start Trading Now",
href: "/contact",
}}
text: "Start Trading Now", href: "/contact"}}
/>
</div>
@@ -76,7 +71,7 @@ export default function ContactPage() {
<ContactText
text="Ready to join thousands of students saving money and earning extra cash? Get started with CampusHub today."
animationType="entrance-slide"
background={{ variant: "grid" }}
background={{ variant: "animated-grid" }}
useInvertedBackground={false}
buttons={[
{ text: "Sign Up Now", href: "/" },
@@ -96,65 +91,29 @@ export default function ContactPage() {
useInvertedBackground={false}
testimonials={[
{
id: "1",
name: "Sarah Johnson",
handle: "@sarahj_bu",
testimonial:
"I sold my old textbooks for $200 and bought next semester's books at 40% off. CampusHub saved me hundreds already!",
imageSrc:
"http://img.b2bpic.net/free-photo/portrait-delighted-hipster-male-student-with-crisp-hair_176532-8157.jpg?_wi=7",
imageAlt: "Sarah Johnson",
},
id: "1", name: "Sarah Johnson", handle: "@sarahj_bu", testimonial:
"I sold my old textbooks for $200 and bought next semester's books at 40% off. CampusHub saved me hundreds already!", imageSrc:
"http://img.b2bpic.net/free-photo/portrait-delighted-hipster-male-student-with-crisp-hair_176532-8157.jpg", imageAlt: "Sarah Johnson"},
{
id: "2",
name: "Michael Chen",
handle: "@mchen_stanford",
testimonial:
"The tutoring service feature is amazing. I found a tutor through CampusHub and improved my calculus grade significantly.",
imageSrc:
"http://img.b2bpic.net/free-photo/portrait-delighted-hipster-male-student-with-crisp-hair_176532-8157.jpg?_wi=8",
imageAlt: "Michael Chen",
},
id: "2", name: "Michael Chen", handle: "@mchen_stanford", testimonial:
"The tutoring service feature is amazing. I found a tutor through CampusHub and improved my calculus grade significantly.", imageSrc:
"http://img.b2bpic.net/free-photo/portrait-delighted-hipster-male-student-with-crisp-hair_176532-8157.jpg", imageAlt: "Michael Chen"},
{
id: "3",
name: "Emily Rodriguez",
handle: "@emily_umich",
testimonial:
"Found the perfect dorm furniture set from a graduating senior. Everything is in great condition and I saved $300.",
imageSrc:
"http://img.b2bpic.net/free-photo/portrait-delighted-hipster-male-student-with-crisp-hair_176532-8157.jpg?_wi=9",
imageAlt: "Emily Rodriguez",
},
id: "3", name: "Emily Rodriguez", handle: "@emily_umich", testimonial:
"Found the perfect dorm furniture set from a graduating senior. Everything is in great condition and I saved $300.", imageSrc:
"http://img.b2bpic.net/free-photo/portrait-delighted-hipster-male-student-with-crisp-hair_176532-8157.jpg", imageAlt: "Emily Rodriguez"},
{
id: "4",
name: "David Kim",
handle: "@davidkim_nyu",
testimonial:
"I earn extra money repairing laptops through CampusHub. The platform makes it super easy to manage bookings.",
imageSrc:
"http://img.b2bpic.net/free-photo/portrait-delighted-hipster-male-student-with-crisp-hair_176532-8157.jpg?_wi=10",
imageAlt: "David Kim",
},
id: "4", name: "David Kim", handle: "@davidkim_nyu", testimonial:
"I earn extra money repairing laptops through CampusHub. The platform makes it super easy to manage bookings.", imageSrc:
"http://img.b2bpic.net/free-photo/portrait-delighted-hipster-male-student-with-crisp-hair_176532-8157.jpg", imageAlt: "David Kim"},
{
id: "5",
name: "Jessica Martinez",
handle: "@jmart_usc",
testimonial:
"The student verification system gives me peace of mind when buying and selling. I trust the community.",
imageSrc:
"http://img.b2bpic.net/free-photo/portrait-delighted-hipster-male-student-with-crisp-hair_176532-8157.jpg?_wi=11",
imageAlt: "Jessica Martinez",
},
id: "5", name: "Jessica Martinez", handle: "@jmart_usc", testimonial:
"The student verification system gives me peace of mind when buying and selling. I trust the community.", imageSrc:
"http://img.b2bpic.net/free-photo/portrait-delighted-hipster-male-student-with-crisp-hair_176532-8157.jpg", imageAlt: "Jessica Martinez"},
{
id: "6",
name: "Alex Thompson",
handle: "@alexthompson_penn",
testimonial:
"Renting out my bike during the semester was so simple. CampusHub handled payments and scheduling seamlessly.",
imageSrc:
"http://img.b2bpic.net/free-photo/portrait-delighted-hipster-male-student-with-crisp-hair_176532-8157.jpg?_wi=12",
imageAlt: "Alex Thompson",
},
id: "6", name: "Alex Thompson", handle: "@alexthompson_penn", testimonial:
"Renting out my bike during the semester was so simple. CampusHub handled payments and scheduling seamlessly.", imageSrc:
"http://img.b2bpic.net/free-photo/portrait-delighted-hipster-male-student-with-crisp-hair_176532-8157.jpg", imageAlt: "Alex Thompson"},
]}
animationType="slide-up"
speed={40}
@@ -168,7 +127,7 @@ export default function ContactPage() {
tagAnimation="slide-up"
title="Need Help? We're Here For You"
description="Find answers to common questions or reach out to our support team for personalized assistance."
imageSrc="http://img.b2bpic.net/free-photo/sales-assistant-being-employed-customer-care-support-job-working-telemarketing-call-center-helpdesk-female-receptionist-with-helpline-service-helping-clients-remote-communication_482257-43021.jpg?_wi=3"
imageSrc="http://img.b2bpic.net/free-photo/sales-assistant-being-employed-customer-care-support-job-working-telemarketing-call-center-helpdesk-female-receptionist-with-helpline-service-helping-clients-remote-communication_482257-43021.jpg"
imageAlt="customer support help assistance service"
mediaPosition="right"
mediaAnimation="slide-up"
@@ -176,23 +135,14 @@ export default function ContactPage() {
useInvertedBackground={false}
faqs={[
{
id: "1",
title: "How can I contact support?",
content:
"Email us at support@campushub.local or use the live chat on our platform. Our support team responds within 24 hours. For urgent issues, call our help line at 1-800-CAMPUS-HUB.",
},
id: "1", title: "How can I contact support?", content:
"Email us at support@campushub.local or use the live chat on our platform. Our support team responds within 24 hours. For urgent issues, call our help line at 1-800-CAMPUS-HUB."},
{
id: "2",
title: "What if I have a problem with my order?",
content:
"Open a support ticket from your account dashboard. Describe the issue and attach photos if needed. We'll investigate and resolve most issues within 48 hours. Buyer and seller protection policies apply.",
},
id: "2", title: "What if I have a problem with my order?", content:
"Open a support ticket from your account dashboard. Describe the issue and attach photos if needed. We'll investigate and resolve most issues within 48 hours. Buyer and seller protection policies apply."},
{
id: "3",
title: "How do I delete my account?",
content:
"Go to Settings → Account, then select 'Delete Account'. Complete pending transactions first. Your data will be securely removed within 30 days. You can download your data before deletion.",
},
id: "3", title: "How do I delete my account?", content:
"Go to Settings → Account, then select 'Delete Account'. Complete pending transactions first. Your data will be securely removed within 30 days. You can download your data before deletion."},
]}
faqsAnimation="slide-up"
/>