# extendify/3.2.1/src/Launch/components/Title.jsx

Extendify, version 3.2.1. 15 lines.

- Page: https://pluginprobe.com/plugins/extendify/3.2.1/code/src/Launch/components/Title.jsx
- Raw: https://pluginprobe.com/plugins/extendify/3.2.1/raw/src/Launch/components/Title.jsx
- Modified: 2024-10-08T10:19:28+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/extendify/3.2.1/code/src/Launch/components/Title.jsx#L10-L20`.

```jsx
export const Title = ({ title, description }) => (
	<div className="relative mx-auto w-full max-w-xl">
		<div className="mb-8 flex flex-col gap-2 md:mb-10 3xl:mb-12">
			<h2 className="m-0 text-center text-2xl leading-8 text-gray-900 md:leading-10">
				{title}
			</h2>
			{description && (
				<p className="m-0 text-center text-base leading-6 text-gray-700">
					{description}
				</p>
			)}
		</div>
	</div>
);

```
