Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apps/portfolio/features/faq/components/SupportSidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ const SupportSidebar = () => {

<div className="mt-6 space-y-3">
<a
href="mailto:contact@veriworkly.com"
href="mailto:info@veriworkly.com"
className="group border-line bg-paper/40 hover:bg-paper-2 text-ink flex items-center justify-between rounded-2xl border p-4 text-xs font-bold uppercase transition-all duration-200 hover:-translate-y-0.5 active:scale-[0.97]"
>
<div className="flex items-center gap-3">
<Mail className="text-accent size-4 transition-transform group-hover:scale-110" />
<span>Email Support</span>
<span>Contact Us</span>
</div>

<ArrowRight className="text-muted size-3.5 transition-transform group-hover:translate-x-0.5" />
Expand Down
2 changes: 1 addition & 1 deletion apps/server/src/mail/auth/welcome.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export function renderWelcomeEmail(name: string, dashboardUrl: string): string {
</table>

<p style="margin:0;font-size:13px;line-height:1.6;color:#8f8c85;text-align:center;">
Need any assistance or have feedback? Drop us a line at contact@veriworkly.com. We read every email.
Need any assistance or have feedback? Drop us a line at info@veriworkly.com. We read every email.
</p>
`;

Expand Down
2 changes: 1 addition & 1 deletion apps/server/src/mail/billing/subscriptionCancelled.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export function renderSubscriptionCancelledEmail(name: string): string {
</p>

<p style="margin:0;font-size:13px;line-height:1.6;color:#8f8c85;text-align:center;">
Changed your mind? You can resubscribe anytime from your billing settings. Questions? Reach us at contact@veriworkly.com.
Changed your mind? You can resubscribe anytime from your billing settings. Questions? Reach us at info@veriworkly.com.
</p>
`;

Expand Down
2 changes: 1 addition & 1 deletion apps/server/src/mail/billing/subscriptionPurchased.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export function renderSubscriptionPurchasedEmail(name: string, planName: string)
</table>

<p style="margin:0;font-size:13px;line-height:1.6;color:#8f8c85;text-align:center;">
Manage your subscription anytime from your billing settings. Questions? Reach us at contact@veriworkly.com.
Manage your subscription anytime from your billing settings. Questions? Reach us at info@veriworkly.com.
</p>
`;

Expand Down
2 changes: 1 addition & 1 deletion apps/server/src/mail/shared/layout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export function getBaseLayout({ title, preheader, bodyHtml }: MailLayoutOptions)
<span style="color:rgba(23, 23, 23, 0.15);">•</span>
<a href="https://veriworkly.com/docs" target="_blank" style="color:#2563eb;text-decoration:none;margin:0 8px;">Docs</a>
<span style="color:rgba(23, 23, 23, 0.15);">•</span>
<a href="mailto:contact@veriworkly.com" style="color:#2563eb;text-decoration:none;margin:0 8px;">Support</a>
<a href="mailto:info@veriworkly.com" style="color:#2563eb;text-decoration:none;margin:0 8px;">Contact Us</a>
</p>

<p style="margin:24px 0 0 0;font-size:11px;color:#a3a098;">
Expand Down
Loading