@@ -2,6 +2,7 @@ import type { Metadata } from 'next';
22import { Footer } from '@/components/footer' ;
33import Section from '@/components/landing/section' ;
44import { Spotlight } from '@/components/landing/spotlight' ;
5+ import { StructuredData } from '@/components/structured-data' ;
56import AmbassadorForm from './ambassador-form' ;
67import AmbassadorHero from './ambassador-hero' ;
78import 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
1525export 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