2023-11-01 17:27:06 +08:00
|
|
|
const ArticleHeading = ({ text }: { text: string }) => {
|
|
|
|
return (
|
2023-11-03 17:25:10 +08:00
|
|
|
<h2 className={"mb-8 text-center text-lg font-bold text-[#054786]"}>
|
2023-11-01 17:27:06 +08:00
|
|
|
{text}
|
|
|
|
</h2>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default ArticleHeading;
|