File size: 1,324 Bytes
1f7d2c6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import Link from 'next/link'
import { Button } from "@/components/ui/button"
import { Card, CardContent } from "@/components/ui/card"

export function CTABanner() {
  return (
    <div className="space-y-6">
      <Card className="rounded-lg bg-primary text-primary-foreground">
        <CardContent className="flex flex-col items-center justify-between p-6 sm:flex-row">
          <div className="mb-4 sm:mb-0">
            <h3 className="text-2xl font-bold">Explore Data Further</h3>
            <p className="mt-2">Find more interesting insights with the Hugging Face Data Explorer Chrome Extension</p>
          </div>
          <Button asChild variant="secondary" size="lg">
            <Link href="https://chromewebstore.google.com/detail/hugging-face-data-explore/algkmpgdgbindfpddilldlogcbhpkhhd" target="_blank" rel="noopener noreferrer">
              Get Chrome Extension
            </Link>
          </Button>
        </CardContent>
      </Card>

      <Card>
        <CardContent className="p-0">
          <iframe
            src="https://huggingface.co/datasets/cfahlgren1/hub-stats/embed/viewer/datasets/train"
            frameBorder="0"
            width="100%"
            height="560px"
            title="Hugging Face Dataset Viewer"
          />
        </CardContent>
      </Card>
    </div>
  )
}