Merge pull request #1332 from datopian/site/fix-showcases
[portaljs site][showcases][s] Merge examples into Showcases tab
This commit is contained in:
commit
f86f0541eb
@ -22,11 +22,41 @@ const items = [
|
|||||||
sourceUrl: 'https://github.com/FCSCOpendata/frontend',
|
sourceUrl: 'https://github.com/FCSCOpendata/frontend',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'Datahub Open Data',
|
title: 'Frictionless Data',
|
||||||
href: 'https://opendata.datahub.io/',
|
href: 'https://datahub.io/core/co2-ppm',
|
||||||
image: '/images/showcases/datahub.webp',
|
repository: 'https://github.com/datopian/datahub/tree/main/examples/dataset-frictionless',
|
||||||
description: 'Demo Data Portal by DataHub',
|
image: '/images/showcases/frictionless-capture.png',
|
||||||
|
description: 'Progressive open-source framework for building data infrastructure - data management, data integration, data flows, etc. It includes various data standards and provides software to work with data.',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: "OpenSpending",
|
||||||
|
image: "/images/showcases/openspending.png",
|
||||||
|
href: "https://www.openspending.org",
|
||||||
|
repository: 'https://github.com/datopian/datahub/tree/main/examples/openspending',
|
||||||
|
description: "OpenSpending is a free, open and global platform to search, visualise and analyse fiscal data in the public sphere."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "FiveThirtyEight",
|
||||||
|
image: "/images/showcases/fivethirtyeight.png",
|
||||||
|
href: "https://fivethirtyeight.portaljs.org/",
|
||||||
|
repository: 'https://github.com/datopian/datahub/tree/main/examples/fivethirtyeight',
|
||||||
|
description: "This is a replica of data.fivethirtyeight.com using PortalJS."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Github Datasets",
|
||||||
|
image: "/images/showcases/github-datasets.png",
|
||||||
|
href: "https://example.portaljs.org/",
|
||||||
|
repository: 'https://github.com/datopian/datahub/tree/main/examples/github-backed-catalog',
|
||||||
|
description: "A simple data catalog that get its data from a list of GitHub repos that serve as datasets."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Hatespeech Data",
|
||||||
|
image: "/images/showcases/turing.png",
|
||||||
|
href: "https://hatespeechdata.com/",
|
||||||
|
repository: 'https://github.com/datopian/datahub/tree/main/examples/turing',
|
||||||
|
description: "Datasets annotated for hate speech, online abuse, and offensive language which are useful for training a natural language processing system to detect this online abuse."
|
||||||
|
},
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
||||||
export default function Showcases() {
|
export default function Showcases() {
|
||||||
|
|||||||
@ -1,10 +1,6 @@
|
|||||||
export default function ShowcasesItem({ item }) {
|
export default function ShowcasesItem({ item }) {
|
||||||
return (
|
return (
|
||||||
<a
|
<div className="rounded overflow-hidden group relative border-1 shadow-lg">
|
||||||
className="rounded overflow-hidden group relative border-1 shadow-lg"
|
|
||||||
target="_blank"
|
|
||||||
href={item.href}
|
|
||||||
>
|
|
||||||
<div
|
<div
|
||||||
className="bg-cover bg-no-repeat bg-top aspect-video w-full group-hover:blur-sm group-hover:scale-105 transition-all duration-200"
|
className="bg-cover bg-no-repeat bg-top aspect-video w-full group-hover:blur-sm group-hover:scale-105 transition-all duration-200"
|
||||||
style={{ backgroundImage: `url(${item.image})` }}
|
style={{ backgroundImage: `url(${item.image})` }}
|
||||||
@ -16,9 +12,48 @@ export default function ShowcasesItem({ item }) {
|
|||||||
<div className="text-center text-primary-dark">
|
<div className="text-center text-primary-dark">
|
||||||
<span className="text-xl font-semibold">{item.title}</span>
|
<span className="text-xl font-semibold">{item.title}</span>
|
||||||
<p className="text-base font-medium">{item.description}</p>
|
<p className="text-base font-medium">{item.description}</p>
|
||||||
|
<div className="flex justify-center mt-2 gap-2 ">
|
||||||
|
{item.href && (
|
||||||
|
<a
|
||||||
|
target="_blank"
|
||||||
|
className=" text-white w-8 h-8 p-1 bg-primary rounded-full hover:scale-110 transition cursor-pointer z-50"
|
||||||
|
rel="noreferrer"
|
||||||
|
href={item.href}
|
||||||
|
>
|
||||||
|
<svg
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
viewBox="0 0 420 420"
|
||||||
|
stroke="white"
|
||||||
|
fill="none"
|
||||||
|
>
|
||||||
|
<path stroke-width="26" d="M209,15a195,195 0 1,0 2,0z" />
|
||||||
|
<path
|
||||||
|
stroke-width="18"
|
||||||
|
d="m210,15v390m195-195H15M59,90a260,260 0 0,0 302,0 m0,240 a260,260 0 0,0-302,0M195,20a250,250 0 0,0 0,382 m30,0 a250,250 0 0,0 0-382"
|
||||||
|
/>
|
||||||
|
</svg>
|
||||||
|
</a>
|
||||||
|
)}
|
||||||
|
{item.repository && (
|
||||||
|
<a
|
||||||
|
target="_blank"
|
||||||
|
rel="noreferrer"
|
||||||
|
className="w-8 h-8 bg-black rounded-full p-1 hover:scale-110 transition cursor-pointer z-50"
|
||||||
|
href={item.repository}
|
||||||
|
>
|
||||||
|
<svg
|
||||||
|
aria-hidden="true"
|
||||||
|
viewBox="0 0 16 16"
|
||||||
|
fill="currentColor"
|
||||||
|
>
|
||||||
|
<path d="M8 0C3.58 0 0 3.58 0 8C0 11.54 2.29 14.53 5.47 15.59C5.87 15.66 6.02 15.42 6.02 15.21C6.02 15.02 6.01 14.39 6.01 13.72C4 14.09 3.48 13.23 3.32 12.78C3.23 12.55 2.84 11.84 2.5 11.65C2.22 11.5 1.82 11.13 2.49 11.12C3.12 11.11 3.57 11.7 3.72 11.94C4.44 13.15 5.59 12.81 6.05 12.6C6.12 12.08 6.33 11.73 6.56 11.53C4.78 11.33 2.92 10.64 2.92 7.58C2.92 6.71 3.23 5.99 3.74 5.43C3.66 5.23 3.38 4.41 3.82 3.31C3.82 3.31 4.49 3.1 6.02 4.13C6.66 3.95 7.34 3.86 8.02 3.86C8.7 3.86 9.38 3.95 10.02 4.13C11.55 3.09 12.22 3.31 12.22 3.31C12.66 4.41 12.38 5.23 12.3 5.43C12.81 5.99 13.12 6.7 13.12 7.58C13.12 10.65 11.25 11.33 9.47 11.53C9.76 11.78 10.01 12.26 10.01 13.01C10.01 14.08 10 14.94 10 15.21C10 15.42 10.15 15.67 10.55 15.59C13.71 14.53 16 11.53 16 8C16 3.58 12.42 0 8 0Z" />
|
||||||
|
</svg>
|
||||||
|
</a>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -18,12 +18,11 @@ const config = {
|
|||||||
{ name: 'Docs', href: '/docs' },
|
{ name: 'Docs', href: '/docs' },
|
||||||
// { name: "Components", href: "/docs/components" },
|
// { name: "Components", href: "/docs/components" },
|
||||||
{ name: 'Blog', href: '/blog' },
|
{ name: 'Blog', href: '/blog' },
|
||||||
{ name: 'Showcases', href: '/#showcases' },
|
|
||||||
{ name: 'Howtos', href: '/howtos' },
|
{ name: 'Howtos', href: '/howtos' },
|
||||||
{ name: 'Guide', href: '/guide' },
|
{ name: 'Guide', href: '/guide' },
|
||||||
{
|
{
|
||||||
name: 'Examples',
|
name: 'Showcases',
|
||||||
href: '/examples/'
|
href: '/showcases/'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Components',
|
name: 'Components',
|
||||||
|
|||||||
@ -1,5 +0,0 @@
|
|||||||
# Examples
|
|
||||||
|
|
||||||
For now, see the examples folder in github:
|
|
||||||
|
|
||||||
https://github.com/datopian/datahub/tree/main/examples
|
|
||||||
@ -35,7 +35,7 @@ export default function Home({ sidebarTree }) {
|
|||||||
sidebarTree={sidebarTree}
|
sidebarTree={sidebarTree}
|
||||||
>
|
>
|
||||||
<Features />
|
<Features />
|
||||||
<Showcases />
|
|
||||||
<Community />
|
<Community />
|
||||||
</Layout>
|
</Layout>
|
||||||
</>
|
</>
|
||||||
|
|||||||
8
site/pages/showcases.tsx
Normal file
8
site/pages/showcases.tsx
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
import Layout from "@/components/Layout";
|
||||||
|
import Showcases from "@/components/Showcases";
|
||||||
|
|
||||||
|
export default function ShowcasesList() {
|
||||||
|
return (
|
||||||
|
<Layout><Showcases/></Layout>
|
||||||
|
)
|
||||||
|
}
|
||||||
BIN
site/public/images/showcases/fivethirtyeight.png
Normal file
BIN
site/public/images/showcases/fivethirtyeight.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 66 KiB |
BIN
site/public/images/showcases/frictionless-capture.png
Normal file
BIN
site/public/images/showcases/frictionless-capture.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 70 KiB |
BIN
site/public/images/showcases/github-datasets.png
Normal file
BIN
site/public/images/showcases/github-datasets.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 41 KiB |
BIN
site/public/images/showcases/openspending.png
Normal file
BIN
site/public/images/showcases/openspending.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 62 KiB |
BIN
site/public/images/showcases/turing.png
Normal file
BIN
site/public/images/showcases/turing.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 88 KiB |
Loading…
x
Reference in New Issue
Block a user