Skip to content

Commit 88a58a4

Browse files
committed
feat: update metadata for homepage
1 parent 9ff79bc commit 88a58a4

File tree

3 files changed

+25
-4
lines changed

3 files changed

+25
-4
lines changed

public/interweb-wtf.png

248 KB
Loading

src/app/layout.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ export const metadata = {
1414
default: 'Interweb.WTF',
1515
template: '%s | Interweb.WTF',
1616
},
17+
authors: [{ name: 'Interweb Alchemy', url: 'https://interwebalchemy.com/' }],
1718
description: 'A privacy-focused, user-centric link shortener for the modern interweb.',
1819
generator: 'Interweb.WTF',
1920
applicationName: 'Interweb.WTF',
@@ -25,13 +26,13 @@ export const metadata = {
2526
title: 'Interweb.WTF',
2627
description: 'A privacy-focused, user-centric link shortener for the modern interweb.',
2728
url: 'https://interweb.wtf',
28-
images: ['/assets/wtf-patient-recipe.png', '/favicon.svg'],
29+
images: ['/interweb-wtf.png', '/assets/wtf-patient-recipe.png', '/favicon.svg'],
2930
},
3031
twitter: {
3132
card: 'summary',
3233
title: 'Interweb.WTF',
3334
description: 'A privacy-focused, user-centric link shortener for the modern interweb.',
34-
images: ['/assets/wtf-patient-recipe.png', '/favicon.svg'],
35+
images: ['/interweb-wtf.png', '/assets/wtf-patient-recipe.png', '/favicon.svg'],
3536
},
3637
};
3738

src/app/page.tsx

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,29 @@ import Screen from '@/app/_components/Screen';
55
import { Welcome } from '@/app/_components/Welcome/Welcome';
66

77
export const metadata = {
8+
metadataBase: new URL(process.env.NEXT_PUBLIC_APPLICATION_URL!),
89
title: {
9-
absolute:
10-
'Interweb.WTF | A privacy-focused, user-centric link shortener for the modern interweb.',
10+
absolute: 'Interweb.WTF | Shortlinks you can trust',
11+
},
12+
authors: [{ name: 'Interweb Alchemy', url: 'https://interwebalchemy.com/' }],
13+
description: 'A privacy-focused, user-centric link shortener for the modern interweb.',
14+
generator: 'Interweb.WTF',
15+
applicationName: 'Interweb.WTF',
16+
referrer: '',
17+
icons: {
18+
icon: '/favicon.svg',
19+
},
20+
openGraph: {
21+
title: 'Interweb.WTF',
22+
description: 'A privacy-focused, user-centric link shortener for the modern interweb.',
23+
url: 'https://interweb.wtf',
24+
images: ['/interweb-wtf.png', '/assets/wtf-patient-recipe.png', '/favicon.svg'],
25+
},
26+
twitter: {
27+
card: 'summary',
28+
title: 'Interweb.WTF',
29+
description: 'A privacy-focused, user-centric link shortener for the modern interweb.',
30+
images: ['/interweb-wtf.png', '/assets/wtf-patient-recipe.png', '/favicon.svg'],
1131
},
1232
};
1333

0 commit comments

Comments
 (0)