@primer/react-brand
Version:
Primer Brand is a GitHub's design system for creating React-based marketing websites and digital experiences.
33 lines (32 loc) • 1.12 kB
TypeScript
import { ColorModesEnum } from '../../../ThemeProvider';
type SolutionPageProps = {
variant: 'size' | 'industry' | 'use-case';
gridOverlay?: boolean;
colorMode?: ColorModesEnum.LIGHT | ColorModesEnum.DARK;
heroImage?: boolean;
heroVideo?: boolean;
heroLabel: string;
heroTitle: string;
heroDescription: string;
heroCtaTextPrimary: string;
heroCtaTextSecondary: string;
sectionIntroText?: string;
sectionIntroCTAText?: string;
introVariant: 'pillars' | 'editorial list';
logoBarVisible?: boolean;
jtbd1Visible?: boolean;
jtbd2Visible?: boolean;
jtbd3Visible?: boolean;
jtbdBentosVisible?: boolean;
testimonialsVisible?: boolean;
pricingOptionsVisible?: boolean;
statisticsVisible?: boolean;
breakoutBannerVisible?: boolean;
customerStoryVisible?: boolean;
riverVisible?: boolean;
faqVisible?: boolean;
breadcrumbsVisible?: boolean;
[key: string]: unknown;
};
export declare function SolutionPage({ variant, gridOverlay, colorMode, ...args }: SolutionPageProps): import("react/jsx-runtime").JSX.Element;
export {};