0eb6334b2d
* init homepage * adds tutorials * update subnav * adds intro background * add offerings * adds in practice cta * include radial gradient * cleanup gradient * Fix learn more button display * include use case pages * connect subnav menu items * extract in practice section for reuse * use Products type * fix type error * add neutral option * rework cta logic * Fix links map * fix use case path * updates accent method * fix button prop usage * refactor customer case study * refactor case studies component * cleanup margin * refactor data props * fix offering cta * spacing updates and introduce intro component * adds intro interface * removes footer border * fix intro description color * add revalidate code to homepage * cleanup unused imports * bump subnav * makes stats optional * adjust border radius based on customer story * redirect /home to homepage * fix: turtorials link * fix: logo alignment * fix: section background color * feat: home reorder and tuts and docs links * fix: flush padding * formatting * feat: sort use cases in nav * fix: card overflow * fix: adjust overflow method * fix: padding on desktop * fix: card container overflow padding on mobile * fix: intro cta conditional * fix: simplify conditional * fix: customer logo sizing * cleanup old data * accept isInternalLink as arg * remove chunk * fix: isInternalLink usage * fix: isInternalLink prop usage * fix: add lang to document * init homepage * adds tutorials * add offerings * cleanup unused imports * bump subnav * fix: flush padding * formatting * fix: intro cta conditional * fix: simplify conditional * cleanup old data * add consul on kubernetes to menu items * add use case redirect * Add use case redirect
82 lines
2 KiB
TypeScript
82 lines
2 KiB
TypeScript
import * as React from 'react'
|
|
import { Products } from '@hashicorp/platform-product-meta'
|
|
import classNames from 'classnames'
|
|
import Image from 'next/image'
|
|
import Button from '@hashicorp/react-button'
|
|
import s from './style.module.css'
|
|
|
|
interface IoUsecaseSectionProps {
|
|
brand?: Products | 'neutral'
|
|
bottomIsFlush?: boolean
|
|
eyebrow: string
|
|
heading: string
|
|
description: string
|
|
media?: {
|
|
src: string
|
|
width: string
|
|
height: string
|
|
alt: string
|
|
}
|
|
cta?: {
|
|
text: string
|
|
link: string
|
|
}
|
|
}
|
|
|
|
export default function IoUsecaseSection({
|
|
brand = 'neutral',
|
|
bottomIsFlush = false,
|
|
eyebrow,
|
|
heading,
|
|
description,
|
|
media,
|
|
cta,
|
|
}: IoUsecaseSectionProps): React.ReactElement {
|
|
return (
|
|
<section
|
|
className={classNames(s.section, s[brand], bottomIsFlush && s.isFlush)}
|
|
>
|
|
<div className={s.container}>
|
|
<p className={s.eyebrow}>{eyebrow}</p>
|
|
<div className={s.columns}>
|
|
<div className={s.column}>
|
|
<h2 className={s.heading}>{heading}</h2>
|
|
{media?.src ? (
|
|
<div
|
|
className={s.description}
|
|
dangerouslySetInnerHTML={{
|
|
__html: description,
|
|
}}
|
|
/>
|
|
) : null}
|
|
{cta?.link && cta?.text ? (
|
|
<div className={s.cta}>
|
|
<Button
|
|
title={cta.text}
|
|
url={cta.link}
|
|
theme={{
|
|
brand: brand,
|
|
}}
|
|
/>
|
|
</div>
|
|
) : null}
|
|
</div>
|
|
<div className={s.column}>
|
|
{media?.src ? (
|
|
// eslint-disable-next-line jsx-a11y/alt-text
|
|
<Image {...media} />
|
|
) : (
|
|
<div
|
|
className={s.description}
|
|
dangerouslySetInnerHTML={{
|
|
__html: description,
|
|
}}
|
|
/>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
)
|
|
}
|