_document.tsx (1035B)
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 <script async src="https://tally.so/widgets/embed.js"></script> 17 </Head> 18 <body> 19 <Main /> 20 <NextScript /> 21 </body> 22 </Html> 23 ) 24 }