remove "The Nook" in license key phrasing

This commit is contained in:
2026-08-28 14:15:40 -04:00
parent 6c024342ba
commit 1ee61d8fe4
2 changed files with 15 additions and 10 deletions

View File

@@ -55,10 +55,7 @@ export default function NookSuccess() {
return ( return (
<> <>
<PageHead <PageHead title="Order complete" description="Your license key." />
title="Order complete"
description="Your The Nook license key."
/>
<SubdomainHeader /> <SubdomainHeader />
<div class="bg-base mx-auto max-w-xl px-4 py-16"> <div class="bg-base mx-auto max-w-xl px-4 py-16">
@@ -88,16 +85,24 @@ export default function NookSuccess() {
</Show> </Show>
} }
> >
<h1 class="text-text mb-2 text-2xl font-bold">Thanks for buying The Nook</h1> <h1 class="text-text mb-2 text-2xl font-bold">
Thanks for buying The Nook
</h1>
<p class="text-subtext0 mb-6 text-sm"> <p class="text-subtext0 mb-6 text-sm">
Here is your license key. Open The Nook, go to Settings, and enter it to activate. Here is your license key. Open The Nook, go to Settings, and enter
it to activate.
</p> </p>
<div class="border-overlay0 bg-base mb-4 flex items-center justify-between gap-3 rounded-lg border p-4"> <div class="border-overlay0 bg-base mb-4 flex items-center justify-between gap-3 rounded-lg border p-4">
<code class="text-text break-all text-sm">{key()}</code> <code class="text-text text-sm break-all">{key()}</code>
</div> </div>
<Button variant="download" size="md" color={brandColor()} onClick={copyKey}> <Button
variant="download"
size="md"
color={brandColor()}
onClick={copyKey}
>
{copied() ? "Copied" : "Copy key"} {copied() ? "Copied" : "Copy key"}
</Button> </Button>

View File

@@ -233,9 +233,9 @@ export async function emailLicenseKey(
body: JSON.stringify({ body: JSON.stringify({
sender: { name: "The Nook", email: "support@freno.me" }, sender: { name: "The Nook", email: "support@freno.me" },
to: [{ email: to }], to: [{ email: to }],
subject: "Your The Nook license key", subject: "Your license key",
textContent: textContent:
`Your The Nook license key is:\n\n${licenseKey}\n\n` + `Your license key is:\n\n${licenseKey}\n\n` +
`Open The Nook, go to Settings, and enter this key to activate.\n` + `Open The Nook, go to Settings, and enter this key to activate.\n` +
`You can activate up to 3 devices.` `You can activate up to 3 devices.`
}) })