in src/components/BannerTitle/index.tsx [8:30]
export default function BannerTitle({
title = 'Apache StreamPark™',
subTitle = 'Make stream processing easier! Easy-to-use streaming application development framework and operation platform, with Apache Flink® and Apache Spark™ supported, provides full lifecycle support for stream processing applications.',
description = 'Apache StreamPark™',
}) {
return (
<div
className={'md:px-16 py-8 text-center h-auto bg-shadow-element'}
data-aos="fade-right"
>
<h1 className="mt-10 text-2xl xs:text-xl md:text-4xl lg:text-6xl font-bold relative inline-block text-black dark:text-white">
Apache StreamPark™
</h1>
<p className="lg:text-[24px] mt-3 text-slate-800 text-center max-w-3xl mx-auto dark:text-slate-200">
{subTitle}
</p>
<p className="lg:text-base mt-4 text-slate-600 text-center max-w-3xl mx-auto dark:text-slate-400">
{description}
</p>
</div>
)
}