Skip to content

Commit 4c9d24a

Browse files
committed
fix: docs links
1 parent f07218e commit 4c9d24a

File tree

19 files changed

+461
-242
lines changed

19 files changed

+461
-242
lines changed

apps/docs/app/(home)/ambassadors/page.tsx

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import type { Metadata } from 'next';
22
import { Footer } from '@/components/footer';
33
import Section from '@/components/landing/section';
44
import { Spotlight } from '@/components/landing/spotlight';
5+
import { StructuredData } from '@/components/structured-data';
56
import AmbassadorForm from './ambassador-form';
67
import AmbassadorHero from './ambassador-hero';
78
import AmbassadorRewards from './ambassador-rewards';
@@ -10,11 +11,32 @@ export const metadata: Metadata = {
1011
title: 'Become an Ambassador | Databuddy',
1112
description:
1213
'Join the Databuddy Ambassador Program and help us build the future of privacy-first analytics',
14+
alternates: {
15+
canonical: 'https://www.databuddy.cc/ambassadors',
16+
},
17+
openGraph: {
18+
title: 'Become an Ambassador | Databuddy',
19+
description:
20+
'Join the Databuddy Ambassador Program and help us build the future of privacy-first analytics',
21+
url: 'https://www.databuddy.cc/ambassadors',
22+
},
1323
};
1424

1525
export default function AmbassadorsPage() {
26+
const title = 'Become an Ambassador | Databuddy';
27+
const description =
28+
'Join the Databuddy Ambassador Program and help us build the future of privacy-first analytics';
29+
const url = 'https://www.databuddy.cc/ambassadors';
30+
1631
return (
1732
<div className="overflow-hidden">
33+
<StructuredData
34+
page={{
35+
title,
36+
description,
37+
url,
38+
}}
39+
/>
1840
<Spotlight transform="translateX(-60%) translateY(-50%)" />
1941

2042
{/* Hero Section */}

0 commit comments

Comments
 (0)