Update src/app/contact/page.tsx

This commit is contained in:
2026-03-03 15:30:25 +00:00
parent 0bf1306d99
commit 2f8dcfb05c

View File

@@ -76,12 +76,12 @@ export default function ContactPage() {
tag="Help"
tagAnimation="slide-up"
faqs={[
{ id: "1", title: "What is your response time?", content: "We aim to respond to all inquiries within 24 business hours. For urgent matters, please call us directly or mark your message as 'Urgent'." },
{ id: "2", title: "Do you offer phone consultations?", content: "Yes, we offer free phone consultations for new clients. Schedule a call through our contact form or call our main office." },
{ id: "3", title: "Can I get a quote online?", content: "You can submit a quote request through our contact form with project details. Our team will provide an accurate estimate within 24-48 hours." },
{ id: "4", title: "What are your business hours?", content: "We're open Monday-Friday, 8:00 AM - 6:00 PM CET. For urgent matters outside business hours, you can submit a contact form and we'll prioritize your request." },
{ id: "5", title: "Do you offer site visits for large projects?", content: "Yes, for enterprise projects and large orders, we provide on-site consultations to understand your specific requirements. Contact our account management team." },
{ id: "6", title: "How can I track my order?", content: "Once your order is confirmed, you'll receive a tracking ID via email. Use this to monitor your project status in real-time on our customer portal." },
{ id: "1", title: "What is your response time?", content: "We aim to respond to all inquiries within 24 business hours. For urgent matters, please call us directly at +49 (211) 123-456 or mark your message as 'Urgent'." },
{ id: "2", title: "Do you offer phone consultations?", content: "Yes, we offer free phone consultations for new clients. Call us at +49 (211) 123-456 during business hours (Monday-Friday, 8:00 AM - 6:00 PM CET) or schedule a call through our contact form." },
{ id: "3", title: "Can I get a quote online?", content: "You can submit a quote request through our contact form with project details. Our team will provide an accurate estimate within 24-48 hours. Email quotes@lichtprint.de for faster processing." },
{ id: "4", title: "What are your business hours?", content: "We're open Monday-Friday, 8:00 AM - 6:00 PM CET. Saturday: 9:00 AM - 1:00 PM CET. Sunday: Closed. For urgent matters outside business hours, you can submit a contact form and we'll prioritize your request." },
{ id: "5", title: "Do you offer site visits for large projects?", content: "Yes, for enterprise projects and large orders, we provide on-site consultations to understand your specific requirements. Contact our account management team at +49 (211) 123-457 for scheduling." },
{ id: "6", title: "How can I track my order?", content: "Once your order is confirmed, you'll receive a tracking ID via email. Use this to monitor your project status in real-time on our customer portal or contact support@lichtprint.de for updates." },
]}
textboxLayout="default"
useInvertedBackground={true}
@@ -100,8 +100,7 @@ export default function ContactPage() {
copyrightText="© 2025 LichtPrint. All rights reserved."
columns={[
{
title: "Services",
items: [
title: "Services", items: [
{ label: "Digital Printing", href: "/services" },
{ label: "Offset Printing", href: "/services" },
{ label: "Packaging", href: "/services" },
@@ -109,8 +108,7 @@ export default function ContactPage() {
],
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Our Team", href: "/about" },
{ label: "Careers", href: "#" },
@@ -118,8 +116,7 @@ export default function ContactPage() {
],
},
{
title: "Support",
items: [
title: "Support", items: [
{ label: "Contact Us", href: "/contact" },
{ label: "FAQ", href: "#faq" },
{ label: "Pricing", href: "#pricing" },
@@ -131,4 +128,4 @@ export default function ContactPage() {
</div>
</ThemeProvider>
);
}
}