|
| 1 | +import type { ReactNode } from 'react'; |
| 2 | + |
| 3 | +import { H2 } from '../Typography'; |
| 4 | + |
| 5 | +import { Card } from './Card'; |
| 6 | +import styles from './styles.module.css'; |
| 7 | + |
| 8 | +export function HomepageUseCases(): ReactNode { |
| 9 | + return ( |
| 10 | + <section className={`${styles.useCasesSection} container`}> |
| 11 | + <H2> |
| 12 | + What can you build with |
| 13 | + <span className="text-highlighted block md:inline"> Open Self Service?</span> |
| 14 | + </H2> |
| 15 | + <p> |
| 16 | + Open Self Service helps you build fast, flexible frontends for apps that serve your customers — not |
| 17 | + admin panels or SPAs, <br /> |
| 18 | + but client-facing portals connected to the APIs your business runs on. |
| 19 | + </p> |
| 20 | + <Card |
| 21 | + title="Knowledge base portals" |
| 22 | + description="Allow customers to search, browse and find answers without contacting support – fully customizable and searchable, integrated with CMSs, your dedicated backend or AI-based tools." |
| 23 | + imageSrc="/img/homepage/case-1-img.png" |
| 24 | + imageAlt="Product marketing website preview" |
| 25 | + /> |
| 26 | + |
| 27 | + <Card |
| 28 | + title="Product marketing websites" |
| 29 | + description="Help your users find key information about your products, services, processes, or policies – powered by headless CMS, easy to manage by support and marketing teams." |
| 30 | + imageSrc="/img/homepage/case-2-img.png" |
| 31 | + imageAlt="Product marketing website preview" |
| 32 | + /> |
| 33 | + |
| 34 | + <Card |
| 35 | + title="Asset service management apps" |
| 36 | + description="Let users report product issues, follow ticket resolution, and receive status updates — customizable, scalable, and API-ready." |
| 37 | + imageSrc="/img/homepage/case-3-img.png" |
| 38 | + imageAlt="Product marketing website preview" |
| 39 | + /> |
| 40 | + |
| 41 | + <Card |
| 42 | + title="Complex customer service platforms" |
| 43 | + description="Allow users to view and submit tickets, track their requests, manage orders, reorder products or spare parts, monitor & configure services – integrated with CRMs, ERPs, CMSs, commerce or custom APIs." |
| 44 | + imageSrc="/img/homepage/case-4-img.png" |
| 45 | + imageAlt="Product marketing website preview" |
| 46 | + /> |
| 47 | + |
| 48 | + <Card |
| 49 | + title="B2B after-sales support portals" |
| 50 | + description="Empower customers to handle product servicing, warranty tracking, and returns — solutions integrated with ERP, CRM, and other backend systems." |
| 51 | + imageSrc="/img/homepage/case-5-img.png" |
| 52 | + imageAlt="Product marketing website preview" |
| 53 | + /> |
| 54 | + </section> |
| 55 | + ); |
| 56 | +} |
0 commit comments