|
| 1 | +import Hero from '@/components/openmetadata/Hero' |
| 2 | +import { KeyFeatures } from '@/components/openmetadata/KeyFeatures' |
| 3 | +import Schedule from '@/components/home/Schedule' |
| 4 | +import { LogoJsonLd, NextSeo, WebPageJsonLd, BreadcrumbJsonLd, FAQPageJsonLd } from 'next-seo' |
| 5 | +import Layout from '@/components/Layout' |
| 6 | +import { CommonUseCases } from '@/components/openmetadata/CommonUseCases' |
| 7 | +import { FAQ } from '@/components/FAQ' |
| 8 | + |
| 9 | +export default function DataHub() { |
| 10 | + const faqItems = [ |
| 11 | + { |
| 12 | + question: 'What is PortalJS?', |
| 13 | + answer: 'PortalJS is a modern frontend framework (Next.js-based) for building fast, customizable data portals — compatible with DataHub, Microsoft Purview, OpenMetadata, CKAN, and other backends.' |
| 14 | + }, |
| 15 | + { |
| 16 | + question: 'Does PortalJS replace DataHub?', |
| 17 | + answer: 'No. It works with your DataHub backend — just replaces the frontend for better UX.' |
| 18 | + }, |
| 19 | + { |
| 20 | + question: 'Can I use PortalJS without modifying DataHub\'s backend?', |
| 21 | + answer: 'Yes. PortalJS works as a decoupled frontend — no need to touch your metadata engine.' |
| 22 | + }, |
| 23 | + { |
| 24 | + question: 'Is this open source or commercial?', |
| 25 | + answer: 'PortalJS is open source. PortalJS Cloud offers a fully managed SaaS version with support and custom features.' |
| 26 | + }, |
| 27 | + ]; |
| 28 | + |
| 29 | + return ( |
| 30 | + <Layout isHomePage={true}> |
| 31 | + <FAQPageJsonLd |
| 32 | + mainEntity={faqItems.map(item => ({ |
| 33 | + questionName: item.question, |
| 34 | + acceptedAnswerText: item.answer |
| 35 | + }))} |
| 36 | + /> |
| 37 | + <div className="flex justify-center"> |
| 38 | + <div className="max-w-8xl px-4 sm:px-8 xl:px-12"> |
| 39 | + <LogoJsonLd |
| 40 | + url="https://portaljs.com" |
| 41 | + logo="https://portaljs.com/icon.png" |
| 42 | + /> |
| 43 | + <NextSeo |
| 44 | + title="Turn DataHub into a Business-Friendly Data Catalog" |
| 45 | + description="Transform DataHub's technical interface into intuitive data catalogs for business users. Create multiple user-specific portals from a single DataHub instance." |
| 46 | + canonical="https://portaljs.com/datahub" |
| 47 | + openGraph={{ |
| 48 | + url: 'https://portaljs.com/datahub', |
| 49 | + title: 'Turn DataHub into a Business-Friendly Data Catalog', |
| 50 | + description: 'Transform DataHub\'s technical interface into intuitive data catalogs for business users. Create multiple user-specific portals from a single DataHub instance.', |
| 51 | + site_name: 'PortalJS', |
| 52 | + }} |
| 53 | + /> |
| 54 | + <WebPageJsonLd |
| 55 | + id="https://portaljs.com/datahub#webpage" |
| 56 | + url="https://portaljs.com/datahub" |
| 57 | + title="Turn DataHub into a Business-Friendly Data Catalog" |
| 58 | + description="Transform DataHub's technical interface into intuitive data catalogs for business users. Create multiple user-specific portals from a single DataHub instance." |
| 59 | + /> |
| 60 | + <BreadcrumbJsonLd |
| 61 | + itemListElements={[ |
| 62 | + { |
| 63 | + position: 1, |
| 64 | + name: 'Home', |
| 65 | + item: 'https://portaljs.com', |
| 66 | + }, |
| 67 | + { |
| 68 | + position: 2, |
| 69 | + name: 'DataHub', |
| 70 | + item: 'https://portaljs.com/datahub', |
| 71 | + }, |
| 72 | + ]} |
| 73 | + /> |
| 74 | + <Hero productName="DataHub" /> |
| 75 | + </div> |
| 76 | + </div> |
| 77 | + <div className="relative max-w-none w-full flex justify-center py-16 bg-slate-50 dark:bg-slate-900"> |
| 78 | + <div className="max-w-4xl px-4 sm:px-8 xl:px-12 text-center"> |
| 79 | + <h2 className="text-3xl font-bold tracking-tight text-slate-900 dark:text-white mb-6"> |
| 80 | + Why Pair PortalJS with DataHub? |
| 81 | + </h2> |
| 82 | + <p className="text-lg text-slate-600 dark:text-slate-300 max-w-3xl mx-auto"> |
| 83 | + DataHub is a powerful metadata platform, but its default UI can feel overwhelming for business users. PortalJS lets you craft tailored, branded experiences on top of DataHub so every audience gets the context and navigation they need without changing your backend. |
| 84 | + </p> |
| 85 | + </div> |
| 86 | + </div> |
| 87 | + <div className="flex justify-center"> |
| 88 | + <div className="max-w-8xl px-4 sm:px-8 xl:px-12"> |
| 89 | + <KeyFeatures productName="DataHub" /> |
| 90 | + </div> |
| 91 | + </div> |
| 92 | + <div className="flex justify-center"> |
| 93 | + <div className="max-w-8xl px-4 sm:px-8 xl:px-12"> |
| 94 | + <CommonUseCases productName="DataHub" /> |
| 95 | + </div> |
| 96 | + </div> |
| 97 | + <div className="relative max-w-none w-full flex justify-center bg-slate-50 dark:bg-slate-900"> |
| 98 | + <div className="max-w-8xl px-4 sm:px-8 xl:px-12 w-full"> |
| 99 | + <FAQ faqItems={faqItems} /> |
| 100 | + </div> |
| 101 | + </div> |
| 102 | + <Schedule calendar="https://calendar.app.google/iQkon85iKURfdBtX7" /> |
| 103 | + </Layout> |
| 104 | + ) |
| 105 | +} |
0 commit comments