mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-23 03:12:24 +03:00
18 lines
437 B
TypeScript
18 lines
437 B
TypeScript
import { FC } from "react";
|
|
|
|
interface PageHeadingProps {
|
|
title: string;
|
|
subtitle?: string;
|
|
}
|
|
|
|
const PageHeading: FC<PageHeadingProps> = ({ title, subtitle }) => {
|
|
return (
|
|
<div className="flex flex-col items-center justify-center px-5">
|
|
<h1 className="text-3xl font-bold text-center">{title}</h1>
|
|
{subtitle && <h2 className="opacity-50 text-center">{subtitle}</h2>}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default PageHeading;
|