From 4e00f18f586a044d1c72f0fb798e5a79e2ff6041 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 06:10:02 +0000 Subject: [PATCH] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 37 +++++++++++-------------------------- 1 file changed, 11 insertions(+), 26 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 24e19f7..a995fcb 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -11,10 +11,10 @@ import { MessageSquare, Mail, Phone } from "lucide-react"; const ContactPage = () => { const navItems = [ { name: "Home", id: "/" }, - { name: "Services", id: "services" }, - { name: "Case Studies", id: "case-studies" }, - { name: "About", id: "about" }, - { name: "Contact", id: "contact" }, + { name: "Services", id: "/services" }, + { name: "Case Studies", id: "/case-studies" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, ]; return ( @@ -43,19 +43,13 @@ const ContactPage = () => { tagAnimation="slide-up" bulletPoints={[ { - title: "Email Us", - description: "hello@roicapital.com - We respond within 24 hours with personalized insights.", - icon: Mail, + title: "Email Us", description: "hello@roicapital.com - We respond within 24 hours with personalized insights.", icon: Mail, }, { - title: "Schedule a Call", - description: "Book a free 30-minute consultation with our team to discuss your marketing challenges.", - icon: Phone, + title: "Schedule a Call", description: "Book a free 30-minute consultation with our team to discuss your marketing challenges.", icon: Phone, }, { - title: "Visit Our Office", - description: "1234 Marketing Drive, San Francisco, CA 94105 - We're located in the heart of the tech district.", - icon: MessageSquare, + title: "Visit Our Office", description: "1234 Marketing Drive, San Francisco, CA 94105 - We're located in the heart of the tech district.", icon: MessageSquare, }, ]} imageSrc="http://img.b2bpic.net/free-photo/focused-business-colleagues-working-together-sitting-workplace-speaking-cellphone-using-computer-teamwork-communication-concept_74855-11707.jpg" @@ -75,20 +69,11 @@ const ContactPage = () => { sideDescription="Find answers to common questions about working with us" faqs={[ { - id: "1", - title: "What should I prepare for our consultation?", - content: "Gather information about your current marketing efforts, business goals, budget, and target audience. We'll review this together and provide recommendations tailored to your situation.", - }, + id: "1", title: "What should I prepare for our consultation?", content: "Gather information about your current marketing efforts, business goals, budget, and target audience. We'll review this together and provide recommendations tailored to your situation."}, { - id: "2", - title: "Do you offer a free initial consultation?", - content: "Yes! We offer a complimentary 30-minute consultation where we assess your marketing needs, discuss your goals, and recommend the best approach for your business.", - }, + id: "2", title: "Do you offer a free initial consultation?", content: "Yes! We offer a complimentary 30-minute consultation where we assess your marketing needs, discuss your goals, and recommend the best approach for your business."}, { - id: "3", - title: "What's your typical response time?", - content: "We respond to all inquiries within 24 business hours. For urgent matters, feel free to call our office directly at the number provided on this page.", - }, + id: "3", title: "What's your typical response time?", content: "We respond to all inquiries within 24 business hours. For urgent matters, feel free to call our office directly at the number provided on this page."}, ]} faqsAnimation="slide-up" textPosition="left" @@ -111,4 +96,4 @@ const ContactPage = () => { ); }; -export default ContactPage; \ No newline at end of file +export default ContactPage;