42 lines
956 B
TypeScript
42 lines
956 B
TypeScript
|
import * as React from 'react'
|
||
|
import Image from 'next/image'
|
||
|
import s from './style.module.css'
|
||
|
|
||
|
interface IoUsecaseHeroProps {
|
||
|
eyebrow: string
|
||
|
heading: string
|
||
|
description: string
|
||
|
pattern?: string
|
||
|
}
|
||
|
|
||
|
export default function IoUsecaseHero({
|
||
|
eyebrow,
|
||
|
heading,
|
||
|
description,
|
||
|
pattern,
|
||
|
}: IoUsecaseHeroProps): React.ReactElement {
|
||
|
return (
|
||
|
<header className={s.hero}>
|
||
|
<div className={s.container}>
|
||
|
<div className={s.pattern}>
|
||
|
{pattern ? (
|
||
|
<Image
|
||
|
src={pattern}
|
||
|
layout="responsive"
|
||
|
width={420}
|
||
|
height={500}
|
||
|
priority={true}
|
||
|
alt=""
|
||
|
/>
|
||
|
) : null}
|
||
|
</div>
|
||
|
<div className={s.content}>
|
||
|
<p className={s.eyebrow}>{eyebrow}</p>
|
||
|
<h1 className={s.heading}>{heading}</h1>
|
||
|
<p className={s.description}>{description}</p>
|
||
|
</div>
|
||
|
</div>
|
||
|
</header>
|
||
|
)
|
||
|
}
|