diff --git a/app/layout.tsx b/app/layout.tsx index 82dcd68..e83acb9 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -6,6 +6,33 @@ import './globals.css' const inter = Inter({ subsets: ['latin'] }) +export const metadata = { + title: 'CDP SDK Demo Apps', + description: 'Explore demo applications built with CDP (Coinbase Developer Platform) SDK.', + openGraph: { + title: 'CDP SDK Demo Apps', + description: 'Explore demo applications built with CDP (Coinbase Developer Platform) SDK.', + url: 'https://cdpsdk.xyz', + siteName: 'CDP SDK Demos', + images: [ + { + url: '/cdp-sample-apps.png', + width: 1200, + height: 630, + alt: 'CDP SDK Demo Apps', + }, + ], + locale: 'en_US', + type: 'website', + }, + twitter: { + card: 'summary_large_image', + title: 'CDP SDK Demo Apps', + description: 'Explore demo applications built with CDP (Coinbase Developer Platform) SDK.', + images: ['/cdp-sample-apps.png'], + }, +} + export default function RootLayout({ children, }: { @@ -46,19 +73,19 @@ export default function RootLayout({ {children} +

© 2024 CDP SDK. All rights reserved.

+

+ By using this app, you agree to the{' '} + + Terms of Service + +

+ diff --git a/public/cdp-sample-apps.png b/public/cdp-sample-apps.png new file mode 100644 index 0000000..b6c512d Binary files /dev/null and b/public/cdp-sample-apps.png differ