chore: some typos
This commit is contained in:
@@ -84,7 +84,7 @@ const Confirmation = () => {
|
|||||||
const schema = {
|
const schema = {
|
||||||
'@context': 'https://schema.org',
|
'@context': 'https://schema.org',
|
||||||
'@type': 'WebSite',
|
'@type': 'WebSite',
|
||||||
name: 'HackerNews Newsletter',
|
name: 'Hackernews Newsletter',
|
||||||
title: 'Subscription Confirmation',
|
title: 'Subscription Confirmation',
|
||||||
url: `${process.env.HOME_URL}/confirmation`
|
url: `${process.env.HOME_URL}/confirmation`
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -6,8 +6,9 @@ import { Inter as FontSans } from 'next/font/google';
|
|||||||
import './globals.css';
|
import './globals.css';
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: `Hacker News newsletter by ${process.env.NEXT_PUBLIC_BRAND_NAME}`,
|
title: `Hackernews newsletter by ${process.env.NEXT_PUBLIC_BRAND_NAME}`,
|
||||||
description: 'Newsletter delivering the best posts from Hacker News',
|
description:
|
||||||
|
'Newsletter delivering the best posts from the Hacker News forum',
|
||||||
keywords: 'newsletter, hackernews, technology, coding, programming, news'
|
keywords: 'newsletter, hackernews, technology, coding, programming, news'
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ export const Home = () => {
|
|||||||
const schema = {
|
const schema = {
|
||||||
'@context': 'https://schema.org',
|
'@context': 'https://schema.org',
|
||||||
'@type': 'WebSite',
|
'@type': 'WebSite',
|
||||||
name: 'HackerNews Newsletter',
|
name: 'Hackernews Newsletter',
|
||||||
title: 'Home',
|
title: 'Home',
|
||||||
url: process.env.HOME_URL
|
url: process.env.HOME_URL
|
||||||
};
|
};
|
||||||
@@ -132,7 +132,7 @@ export const Home = () => {
|
|||||||
<CustomCard
|
<CustomCard
|
||||||
className='max-90vw w-96'
|
className='max-90vw w-96'
|
||||||
title='Interested in keeping up with the latest from the tech world? 👩💻'
|
title='Interested in keeping up with the latest from the tech world? 👩💻'
|
||||||
description='Subscribe to our newsletter! Top stories from Hackernews for you. Once a day. Every day.'
|
description='Subscribe to our newsletter! Top stories from the Hacker News forum for you. Once a day. Every day.'
|
||||||
content={renderContent()}
|
content={renderContent()}
|
||||||
/>
|
/>
|
||||||
</>
|
</>
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ const Privacy = () => {
|
|||||||
const schema = {
|
const schema = {
|
||||||
'@context': 'https://schema.org',
|
'@context': 'https://schema.org',
|
||||||
'@type': 'WebSite',
|
'@type': 'WebSite',
|
||||||
name: 'HackerNews Newsletter',
|
name: 'Hackernews Newsletter',
|
||||||
title: 'Privacy Policy',
|
title: 'Privacy Policy',
|
||||||
url: `${process.env.HOME_URL}/privacy`
|
url: `${process.env.HOME_URL}/privacy`
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ const Unsubscribe = () => {
|
|||||||
const schema = {
|
const schema = {
|
||||||
'@context': 'https://schema.org',
|
'@context': 'https://schema.org',
|
||||||
'@type': 'WebSite',
|
'@type': 'WebSite',
|
||||||
name: 'HackerNews Newsletter',
|
name: 'Hackernews Newsletter',
|
||||||
title: 'Unsubscribe',
|
title: 'Unsubscribe',
|
||||||
url: `${process.env.HOME_URL}/unsubscribe`
|
url: `${process.env.HOME_URL}/unsubscribe`
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ export const CustomCard = ({
|
|||||||
>
|
>
|
||||||
<CardHeader>
|
<CardHeader>
|
||||||
<p className='text-xs uppercase text-gray-500'>
|
<p className='text-xs uppercase text-gray-500'>
|
||||||
Hackernews + newsletter
|
Hacker News + newsletter
|
||||||
</p>
|
</p>
|
||||||
<CardTitle>{title}</CardTitle>
|
<CardTitle>{title}</CardTitle>
|
||||||
{description && <CardDescription>{description}</CardDescription>}
|
{description && <CardDescription>{description}</CardDescription>}
|
||||||
|
|||||||
@@ -40,7 +40,7 @@ export const Template = ({
|
|||||||
textAlign: 'center'
|
textAlign: 'center'
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
Hackernews + newsletter
|
Hacker News + newsletter
|
||||||
</p>
|
</p>
|
||||||
<h2
|
<h2
|
||||||
style={{
|
style={{
|
||||||
|
|||||||
Reference in New Issue
Block a user