oxen-website/components/article/sections/ArticleSubtitleSection.tsx

27 lines
676 B
TypeScript

import { useContext } from 'react';
import { ScreenContext } from '../../../contexts/screen';
import { Contained } from '../../Contained';
interface Props {
subtitle: string;
}
export function ArticleSubtitleSection({ subtitle }: Props) {
const { isDesktop } = useContext(ScreenContext);
return (
<Contained>
<div className="flex justify-center w-full">
<span
style={{
maxWidth: isDesktop ? '700px' : 'unset',
}}
className="w-full mb-3 text-lg font-medium text-center text-gray-900 desktop:mb-6 desktop:text-2xl font-sans"
>
{subtitle}
</span>
</div>
</Contained>
);
}