Skip to content

Commit

Permalink
πŸ› fix(pages): general copy improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
ythecombinator committed Dec 12, 2023
1 parent e1f5447 commit 211fcbb
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 12 deletions.
1 change: 1 addition & 0 deletions public/sitemap.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
<url><loc>https://www.ythecombinator.space/about/clients</loc><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://www.ythecombinator.space/about/life</loc><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://www.ythecombinator.space/about/speaker-rider</loc><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://www.ythecombinator.space/about/uses</loc><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://www.ythecombinator.space/posts/2022-wrapped</loc><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://www.ythecombinator.space/posts/jheniffer-was-always-my-favorite-color</loc><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://www.ythecombinator.space/posts/driving-towards-a-universal-navigation-strategy-in-react</loc><changefreq>daily</changefreq><priority>0.7</priority></url>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/about/[slug].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const AboutPage: NextPage<Props> = ({ content }) => {
return (
<>
<Metadata
title={`About / ${siteMetadata.title}`}
title={`About β€” ${siteMetadata.title}`}
openGraph={{
type: 'profile',
profile: {
Expand Down
2 changes: 1 addition & 1 deletion src/pages/about/experience.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const Page: NextPage<CareerPageProps> = ({ content, work, volunteering }) => {
return (
<>
<Metadata
title={`About / ${siteMetadata.title}`}
title={`About β€” ${siteMetadata.title}`}
openGraph={{
type: 'profile',
profile: {
Expand Down
10 changes: 5 additions & 5 deletions src/pages/about/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const AboutPage: NextPage = () => {
return (
<>
<Metadata
title={`About / ${siteMetadata.title}`}
title={`About β€” ${siteMetadata.title}`}
openGraph={{
type: 'profile',
profile: {
Expand Down Expand Up @@ -67,12 +67,12 @@ const AboutPage: NextPage = () => {
<Typography.p>
I was also inspired by the pseudonym of the brilliant{' '}
<Typography.a href="https://en.wikipedia.org/wiki/Why_the_lucky_stiff">Jonathan Gillette</Typography.a>{' '}
β€” ie. "why the lucky stiff" or "_why" β€” and I realized <Typography.mark>ythecombinator</Typography.mark>{' '}
was available pretty everywhere; so I took it!
β€” ie. {`"`}why the lucky stiff{`"`} or {`"`}_why{`"`} β€” and I realized{' '}
<Typography.mark>ythecombinator</Typography.mark> was available pretty everywhere; so I took it!
</Typography.p>

<Typography.p>
By the way, if you're up for a long read, Mike Vanier has{' '}
By the way, if you{`'`}re up for a long read, Mike Vanier has{' '}
<Typography.a href="https://mvanier.livejournal.com/2897.html">
a great explanation concerning the topic
</Typography.a>
Expand All @@ -86,7 +86,7 @@ const AboutPage: NextPage = () => {
<Typography.a href="https://developers.google.com/community/experts/directory">
Google Developer Expert
</Typography.a>{' '}
from Fortaleza, Brazil. {`I've `} worked as a software engineer and architect in product and consultancy
from Fortaleza, Brazil. {`I've`} worked as a software engineer and architect in product and consultancy
companies, taking the best from both worlds.
</Typography.p>

Expand Down
2 changes: 1 addition & 1 deletion src/pages/posts/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import AllPostsSection from 'components/pages/posts/all-posts-section';
import AllPostsSectionSkeleton from 'components/pages/posts/all-posts-section-skeleton';

const metadata = {
title: `Posts / ${siteMetadata.title}`,
title: `Posts β€” ${siteMetadata.title}`,
description: 'Ideas. Stories. Updates.',
};

Expand Down
4 changes: 2 additions & 2 deletions src/pages/talks/cfp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import ListSection from 'components/pages/talks-cfp/list-section';
import OverviewSection from 'components/pages/talks-cfp/overview-section';

const metadata = {
title: `Talks / CFPs / ${siteMetadata.title}`,
description: 'CFPs. Rejections. Open.',
title: `Call for Papers β€” ${siteMetadata.title}`,
description: 'Call for Papers',
};

/*~
Expand Down
2 changes: 1 addition & 1 deletion src/pages/talks/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import TopicHighlightsSection from 'components/pages/talks/topic-highlights-sect
import YoutubeHighlightsSection from 'components/pages/talks/youtube-highlights-section';

const metadata = {
title: `Talks / ${siteMetadata.title}`,
title: `Talks β€” ${siteMetadata.title}`,
description: 'Confs. Meetups. More.',
};

Expand Down
2 changes: 1 addition & 1 deletion src/pages/talks/rider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import Typography from 'components/shared/typography';
import Layout from 'components/layouts/layout-page';

const metadata = {
title: `Talks / Speaker Rider / ${siteMetadata.title}`,
title: `Speaker Rider β€” ${siteMetadata.title}`,
description: 'Your Event & I!',
};

Expand Down

0 comments on commit 211fcbb

Please sign in to comment.