File size: 1,398 Bytes
b369d17
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import { Content } from './../components/Content'
import { FAQ } from './../components/FAQ'
import Footer from './../components/Footer'
import Hero from './../components/Hero'
import Header from './../components/Header'
import Head from 'next/head'

export default function Home() {
  return (
    <>
      <Head>
        <title>Followgraph for Hugging Face</title>
        <meta
          name="description"
          content="Find people to follow on Hugging Face by expanding your follow graph."
        />
        <meta name="viewport" content="width=device-width, initial-scale=1" />
        <script type="application/ld+json">
          {`{
            "@context": "https://schema.org",
            "@type": "WebSite",
            "url": "https://followgraph.vercel.app/",
            "image": {
              "@type": "ImageObject",
              "@id": "https://followgraph.vercel.app/#/schema/ImageObject/FollowGraphThumbnail",
              "url": "/ldjson-logo.jpg",
              "contentUrl": "/ldjson-logo.jpg",
              "caption": "Followgraph for Hugging Face",
              "width": 345,
              "height": 345
              }
            }`}
        </script>
        <link rel="icon" href="/favicon.ico" />
      </Head>
      <div>
        <Header selected="home" />
        <Hero />
        <Content />
        <FAQ />

        <Footer />
      </div>
    </>
  )
}