damus.io

damus.io website
git clone git://jb55.com/damus.io
Log | Files | Refs | README | LICENSE

install.tsx (665B)


      1 import Head from "next/head";
      2 import { useIntl } from 'react-intl'
      3 import { Footer } from '@/components/sections/Footer';
      4 import { InstallInstructions } from "@/components/sections/Notedeck/InstallInstructions";
      5 
      6 export function NotedeckInstallPage() {
      7   const intl = useIntl()
      8 
      9   return (<>
     10     <Head>
     11       <title>Install Notedeck</title>
     12       <meta name="description" content={intl.formatMessage({ id: "notedeck.meta_description", defaultMessage: "Notedeck is a powerful, performant Nostr client for Linux, Windows, and macOS" })} />
     13     </Head>
     14     <main style={{ scrollBehavior: "smooth" }}>
     15       <InstallInstructions/>
     16       <Footer />
     17     </main>
     18   </>)
     19 }