Skip to content

Commit

Permalink
feat: add/improve metadata descriptions on landing pages
Browse files Browse the repository at this point in the history
  • Loading branch information
martapanc committed Oct 30, 2023
1 parent 8c42633 commit 2195413
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/app/(public)/about/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import { RandomFact } from '@/types/RandomFact';

export const metadata = {
title: 'About | MartaCodes.it',
description: 'About page',
description: 'All non-software-related things I enjoy doing in my free time.',
};

const getData = async () => {
Expand Down
2 changes: 1 addition & 1 deletion src/app/(public)/cv/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { querySkills } from '@/queries/skills';

export const metadata = {
title: 'My CV | MartaCodes.it',
description: 'About page',
description: 'All about my software development skills and work experience.',
};

const queryData = async () => {
Expand Down
6 changes: 6 additions & 0 deletions src/app/(public)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ import { queryHomePage } from '@/queries/home-page';
import { CodeSnippet } from '@/types/CodeSnippet';
import { HomePage } from '@/types/HomePage';

export const metadata = {
title: 'Marta Pancaldi | Martacodes.it',
description:
"I'm a software engineer who writes code for work and for fun. I love learning, experimenting with new tech stacks and solving complex problems.",
};

const queryData = async () => {
const codeSnippets: CodeSnippet[] = await queryCodeSnippets();

Expand Down
2 changes: 1 addition & 1 deletion src/app/(public)/projects/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { queryProjects } from '@/queries/projects';

export const metadata = {
title: 'Projects | MartaCodes.it',
description: 'Projects page',
description: 'A list of programming (and other) projects I worked on.',
};

const queryData = async () => {
Expand Down
2 changes: 1 addition & 1 deletion src/app/(public)/uses/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { queryUsesPage } from '@/queries/uses-page';

export const metadata = {
title: 'Uses | MartaCodes.it',
description: 'Uses page',
description: 'A list of tech equipment and software I use.',
};

const queryData = async () => {
Expand Down

0 comments on commit 2195413

Please sign in to comment.