23 lines
812 B
TypeScript
23 lines
812 B
TypeScript
'use client';
|
|
|
|
import React from 'react';
|
|
import { ObfuscatedMailto } from '@/components/ui/ObfuscatedMailto';
|
|
|
|
export function ContactSupport() {
|
|
return (
|
|
<div className="mt-16 bg-blue-50 border-l-4 border-blue-500 p-8 rounded-r-lg">
|
|
<h2 className="text-2xl font-bold mb-4 text-gray-900">
|
|
Still have questions?
|
|
</h2>
|
|
<p className="text-lg text-gray-700 mb-6 leading-relaxed">
|
|
Our support team is here to help. Contact us at{' '}
|
|
<ObfuscatedMailto
|
|
email="support@qrmaster.net"
|
|
className="text-blue-600 hover:text-blue-700 font-semibold"
|
|
/>{' '}
|
|
or reach out through our live chat.
|
|
</p>
|
|
</div>
|
|
);
|
|
}
|