mirror of
https://github.com/rybbit-io/rybbit.git
synced 2025-05-11 12:25:36 +02:00
Update contact methods to improve user experience
- Replaced email links with a direct contact page URL across multiple components, including Subscribe, PricingSection, Contact, and PrivacyPolicy. - Enhanced navigation for custom pricing inquiries by redirecting users to the contact page instead of email.
This commit is contained in:
parent
1f782b6274
commit
9e39883b37
4 changed files with 7 additions and 8 deletions
|
@ -154,7 +154,7 @@ export function PricingSection() {
|
|||
</div>
|
||||
|
||||
{prices.custom ? (
|
||||
<Link href="mailto:hello@rybbit.io" className="w-full block">
|
||||
<Link href="https://www.rybbit.io/contact" className="w-full block">
|
||||
<button className="w-full bg-emerald-600 hover:bg-emerald-500 text-white font-medium px-5 py-3 rounded-lg shadow-lg shadow-emerald-900/20 transform hover:-translate-y-0.5 transition-all duration-200 focus:outline-none focus:ring-2 focus:ring-emerald-500 focus:ring-opacity-50">
|
||||
Contact us
|
||||
</button>
|
||||
|
|
|
@ -25,7 +25,7 @@ export default function Contact() {
|
|||
</div>
|
||||
<div>
|
||||
<h2 className="text-xl font-medium mb-1">Email</h2>
|
||||
<a href="mailto:hello@rybbit.io" className="text-neutral-300 hover:text-white transition-colors">
|
||||
<a href="https://www.rybbit.io/contact" className="text-neutral-300 hover:text-white transition-colors">
|
||||
hello@rybbit.io
|
||||
</a>
|
||||
</div>
|
||||
|
|
|
@ -107,7 +107,7 @@ export default function PrivacyPolicy() {
|
|||
<h2 className="text-2xl font-semibold mt-8 mb-4">Contact Us</h2>
|
||||
<p>
|
||||
If you have questions about this privacy policy or Rybbit's data practices, please contact us at:
|
||||
<a href="mailto:hello@rybbit.io" className="text-emerald-400 hover:text-emerald-300 ml-1">
|
||||
<a href="https://www.rybbit.io/contact" className="text-emerald-400 hover:text-emerald-300 ml-1">
|
||||
hello@rybbit.io
|
||||
</a>
|
||||
</p>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue