Skip to content

Commit

Permalink
add headers
Browse files Browse the repository at this point in the history
  • Loading branch information
jazz-cb committed Sep 17, 2024
1 parent bdaf55e commit 5a5928c
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import Image from 'next/image'
import Link from 'next/link'
import { FaGithub, FaDiscord, FaLightbulb } from 'react-icons/fa'
import './globals.css'
import Head from 'next/head'

const inter = Inter({ subsets: ['latin'] })

Expand Down Expand Up @@ -43,6 +44,16 @@ export default function RootLayout({
<head>
<link rel="icon" href="/favicon.ico" />
</head>
<Head>
<meta property="og:title" content="CDP SDK Demo Apps" />
<meta property="og:description" content="Explore demo applications built with CDP (Coinbase Developer Platform) SDK." />
<meta property="og:image" content="/logo.png" />
<meta property="og:url" content="https://cdpsdk.xyz" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="CDP SDK Demo Apps" />
<meta name="twitter:description" content="Explore demo applications built with CDP (Coinbase Developer Platform) SDK." />
<meta name="twitter:image" content="/logo.png" />
</Head>
<body className={inter.className}>
<div className="min-h-screen bg-white text-gray-800">
<header className="py-6 px-4 bg-white shadow-md">
Expand Down

0 comments on commit 5a5928c

Please sign in to comment.