diff --git a/app/layout.tsx b/app/layout.tsx index 1b8e2cd7c..7bba0212f 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -51,7 +51,7 @@ export default function RootLayout({ diff --git a/components/links/link-sheet/allow-list-section.tsx b/components/links/link-sheet/allow-list-section.tsx index 307e38c3d..7549096bd 100644 --- a/components/links/link-sheet/allow-list-section.tsx +++ b/components/links/link-sheet/allow-list-section.tsx @@ -112,7 +112,7 @@ export default function AllowListSection({ className="focus:ring-inset" rows={5} placeholder={`Enter allowed emails/domains, one per line, e.g. -marc@papermark.io +marc@papermark.com @example.org`} value={allowListInput} onChange={handleAllowListChange} diff --git a/components/links/link-sheet/deny-list-section.tsx b/components/links/link-sheet/deny-list-section.tsx index 05d83c143..8b9f188b5 100644 --- a/components/links/link-sheet/deny-list-section.tsx +++ b/components/links/link-sheet/deny-list-section.tsx @@ -111,7 +111,7 @@ export default function DenyListSection({ className="focus:ring-inset" rows={5} placeholder={`Enter blocked emails/domains, one per line, e.g. -marc@papermark.io +marc@papermark.com @example.org`} value={denyListInput} onChange={handleDenyListChange} diff --git a/components/profile-menu.tsx b/components/profile-menu.tsx index 8b69913d0..acaac4517 100644 --- a/components/profile-menu.tsx +++ b/components/profile-menu.tsx @@ -141,7 +141,7 @@ const ProfileMenu = ({ className, size }: ProfileMenuProps) => { diff --git a/components/sidebar/nav-user.tsx b/components/sidebar/nav-user.tsx index 3dbfa7020..e663ac25a 100644 --- a/components/sidebar/nav-user.tsx +++ b/components/sidebar/nav-user.tsx @@ -165,8 +165,8 @@ export function NavUser() { { - navigator.clipboard.writeText("support@papermark.io"); - toast.success("support@papermark.io copied to clipboard"); + navigator.clipboard.writeText("support@papermark.com"); + toast.success("support@papermark.com copied to clipboard"); }} > diff --git a/components/ui/progress.tsx b/components/ui/progress.tsx index 4b26873f4..82a312ab0 100644 --- a/components/ui/progress.tsx +++ b/components/ui/progress.tsx @@ -47,7 +47,7 @@ const Progress = React.forwardRef<
{text} - +
diff --git a/lib/middleware/domain.ts b/lib/middleware/domain.ts index 2264353ac..458b32fd2 100644 --- a/lib/middleware/domain.ts +++ b/lib/middleware/domain.ts @@ -47,7 +47,7 @@ export default async function DomainMiddleware(req: NextRequest) { headers: { "X-Robots-Tag": "noindex", "X-Powered-By": - "Papermark.io - Document sharing infrastructure for the modern web", + "Papermark.com - Document sharing infrastructure for the modern web", }, }); } diff --git a/lib/resend.ts b/lib/resend.ts index a4b6cd86d..a0246976a 100644 --- a/lib/resend.ts +++ b/lib/resend.ts @@ -46,21 +46,21 @@ export const sendEmail = async ({ const fromAddress = from ?? (marketing - ? "Marc from Papermark " + ? "Marc from Papermark " : system - ? "Papermark " + ? "Papermark " : verify - ? "Papermark " + ? "Papermark " : !!scheduledAt - ? "Marc Seitz " - : "Marc from Papermark "); + ? "Marc Seitz " + : "Marc from Papermark "); try { const { data, error } = await resend.emails.send({ from: fromAddress, to: test ? "delivered@resend.dev" : to, cc: cc, - replyTo: marketing ? "marc@papermark.io" : replyTo, + replyTo: marketing ? "marc@papermark.com" : replyTo, subject, react, scheduledAt, diff --git a/lib/year-in-review/send-emails.ts b/lib/year-in-review/send-emails.ts index f65419c34..38eb85449 100644 --- a/lib/year-in-review/send-emails.ts +++ b/lib/year-in-review/send-emails.ts @@ -145,7 +145,7 @@ export async function processEmailQueue() { return { email: { - from: "Papermark ", + from: "Papermark ", to: userTeam.user.email || "delivered@resend.dev", subject: "2024 in Review: Your Year with Papermark", react, diff --git a/pages/_app.tsx b/pages/_app.tsx index 4cb1f3d26..6d5920c32 100644 --- a/pages/_app.tsx +++ b/pages/_app.tsx @@ -75,7 +75,7 @@ export default function App({