Skip to content

Commit 104986c

Browse files
committed
metaTags updates
1 parent 009f8e1 commit 104986c

File tree

4 files changed

+22
-4
lines changed

4 files changed

+22
-4
lines changed

apps/blog/src/routes/imprint/+page.server.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ export const load: PageServerLoad = (async () => {
77

88
// Pass meta tags to the page
99
const pageMetaTags = {
10-
title: page?.title
10+
title: page?.title,
11+
robots: 'noindex,nofollow,noarchive,nosnippet,noimageindex'
1112
} satisfies MetaTagsProps | undefined;
1213

1314
return {

apps/blog/src/routes/privacy-policy/+page.server.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ export const load: PageServerLoad = (async () => {
88

99
// Pass meta tags to the page
1010
const pageMetaTags = {
11-
title: page?.title
11+
title: page?.title,
12+
robots: 'noindex,nofollow,noarchive,nosnippet,noimageindex'
1213
} satisfies MetaTagsProps | undefined;
1314

1415
return {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"typescript": "5.9.2",
1919
"@types/node": "^24.3.0"
2020
},
21-
"packageManager": "pnpm@10.13.1",
21+
"packageManager": "pnpm@10.14.0",
2222
"engines": {
2323
"node": ">=22"
2424
}

packages/data/src/default/metaDefault.data.ts

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,23 @@ export const defaultMetaTags = (url: { pathname: string; origin: string }) =>
2222
'accessible websites',
2323
'UX accessibility',
2424
'disability-friendly design',
25-
'assistive technology'
25+
'assistive technology',
26+
'barrierefreies user interface design',
27+
'barrierefreiheitsberatung',
28+
'barrierefreie webentwicklung',
29+
'barrierefreie websites',
30+
'barrierefreies design',
31+
'barrierefreie software',
32+
'barrierefreie apps',
33+
'barrierefreie digitale anwendungen',
34+
'barrierefreie benutzeroberflächen',
35+
'barrierefreie navigation',
36+
'barrierefreie technologien',
37+
'barrierefreie lösungen',
38+
'barrierefreie gestaltung',
39+
'barrierefreie kommunikation',
40+
'barrierefreie informationstechnik',
41+
'digitale barrierefreiheit'
2642
],
2743
openGraph: {
2844
type: 'website',

0 commit comments

Comments
 (0)