_document.tsx (963B)
1 import { Html, Head, Main, NextScript } from 'next/document' 2 3 export default function Document() { 4 return ( 5 <Html lang="en"> 6 <Head> 7 <meta property="og:title" content="Damus"/> 8 <meta property="og:description" content="A new social network that you control"/> 9 <meta property="og:image" content="https://damus.io/logo_icon.png"/> 10 <meta property="og:url" content="https://damus.io"/> 11 <meta name="keywords" content="Damus, nostr client, decentralized, social media, censorship resistant, open source, iOS, iPad, macOS"/> 12 <meta name="twitter:card" content="summary_large_image"/> 13 <meta name="twitter:image" content="https://damus.io/logo_icon.png"/> 14 <meta name="twitter:description" content="Damus - A new social network that you control"/> 15 <meta name="twitter:title" content="Damus"/> 16 </Head> 17 <body> 18 <Main /> 19 <NextScript /> 20 </body> 21 </Html> 22 ) 23 }