Skip to content

Commit 9703559

Browse files
committed
fix(spelling): ScriptKit -> Script Kit
1 parent d04726a commit 9703559

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

apps/scriptkit/public/testimonials.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const Testimonials: Testimonial[] = [
3535
},
3636
},
3737
{
38-
body: 'We are using ScriptKit to quickly automate tedious processes in our production pipeline and it’s awesome.',
38+
body: 'We are using Script Kit to quickly automate tedious processes in our production pipeline and it’s awesome.',
3939
url: 'https://twitter.com/jhooks/status/1383457083547258887',
4040
created_at: new Date('04-17-2021'),
4141
author: {
@@ -46,7 +46,7 @@ const Testimonials: Testimonial[] = [
4646
},
4747
},
4848
{
49-
body: 'Enjoying the updated design for ScriptKit by @johnlindquist. The fact that it is just JS scripts at the end of the day really motivating for automating frequent workflows',
49+
body: 'Enjoying the updated design for Script Kit by @johnlindquist. The fact that it is just JS scripts at the end of the day really motivating for automating frequent workflows',
5050
url: 'https://twitter.com/lannonbr/status/1383199368841412609',
5151
created_at: new Date('04-17-2021'),
5252
author: {

apps/scriptkit/src/components/sponsors.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const Sponsors = () => {
66
return process.env.NEXT_PUBLIC_SPONSORSHIP_URL ? (
77
<div className="flex flex-col items-center justify-center text-center pt-10 px-5">
88
<span className="font-light text-lg opacity-80">
9-
ScriptKit is made possible thanks to our sponsors
9+
Script Kit is made possible thanks to our sponsors
1010
</span>
1111
<div className="flex flex-wrap justify-center gap-10 pt-8">
1212
{sponsorsData.map(({company, url, image}) => {

apps/scriptkit/src/pages/login.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ const Login: React.FC<
4444
const githubProvider = providers.github
4545

4646
return (
47-
<Layout meta={{title: 'Log in to ScriptKit'}}>
47+
<Layout meta={{title: 'Log in to Script Kit'}}>
4848
<div className="relative mx-auto flex w-full flex-grow flex-col items-center justify-center pb-16 pt-16 text-white sm:p-5 sm:pt-40 md:pb-40">
4949
<main className="relative z-10 rounded-lg border-gray-800 p-5 shadow-black/60 sm:mx-auto sm:border sm:bg-gray-800/90 sm:p-10 sm:shadow-2xl">
5050
<h1 className="pt-3 text-center font-text text-4xl font-extrabold leading-9 sm:pt-8 sm:text-4xl">
51-
Log in to ScriptKit
51+
Log in to Script Kit
5252
</h1>
5353
{query?.error === 'Verification' ? (
5454
<p className="max-w-sm pt-4 text-center sm:mx-auto sm:w-full sm:pt-8">

apps/scriptkit/src/pages/newsletter.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default function Confirm() {
66
return (
77
<Layout
88
withFooter={false}
9-
meta={{title: 'Subscribe to ScriptKit'}}
9+
meta={{title: 'Subscribe to Script Kit'}}
1010
className="flex items-center justify-center min-h-screen"
1111
>
1212
<main className="flex flex-col items-center justify-center max-w-screen-sm pb-24">

apps/scriptkit/src/pages/tips/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const TipsIndex: React.FC<TipsIndex> = ({tips}) => {
2626
return (
2727
<Layout
2828
meta={{
29-
title: `ScriptKit Tips by ${process.env.NEXT_PUBLIC_PARTNER_FIRST_NAME} ${process.env.NEXT_PUBLIC_PARTNER_LAST_NAME}`,
29+
title: `Script Kit Tips by ${process.env.NEXT_PUBLIC_PARTNER_FIRST_NAME} ${process.env.NEXT_PUBLIC_PARTNER_LAST_NAME}`,
3030
description: pageDescription,
3131
}}
3232
>

apps/scriptkit/src/templates/tip-template.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ const TipTemplate: React.FC<{
116116
]}
117117
datePublished={tip._updatedAt || new Date().toISOString()}
118118
authorName={`${process.env.NEXT_PUBLIC_PARTNER_FIRST_NAME} ${process.env.NEXT_PUBLIC_PARTNER_LAST_NAME}`}
119-
description={tip.description || 'ScriptKit Tip'}
119+
description={tip.description || 'Script Kit Tip'}
120120
/>
121121
<Layout
122122
meta={{
@@ -427,10 +427,10 @@ const SubscribeForm = ({
427427
>
428428
<MailIcon className="h-5 w-5 text-brand" />
429429
</div>{' '}
430-
New ScriptKit tips delivered to your inbox
430+
New Script Kit tips delivered to your inbox
431431
</div>
432432
<SubscribeToConvertkitForm
433-
actionLabel="Subscribe for ScriptKit tips"
433+
actionLabel="Subscribe for Script Kit tips"
434434
onSuccess={(subscriber, email) => {
435435
return handleOnSuccess(subscriber, email)
436436
}}

0 commit comments

Comments
 (0)