# extendify/3.2.0/src/PageCreator/components/content/Title.jsx

Extendify, version 3.2.0. 15 lines.

- Page: https://pluginprobe.com/plugins/extendify/3.2.0/code/src/PageCreator/components/content/Title.jsx
- Raw: https://pluginprobe.com/plugins/extendify/3.2.0/raw/src/PageCreator/components/content/Title.jsx
- Modified: 2025-03-13T17:10:44+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.0/code/src/PageCreator/components/content/Title.jsx#L10-L20`.

```jsx
export const Title = ({ title, description }) => {
	return (
		<>
			<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>
			)}
		</>
	);
};

```
