2023-12-16 09:15:56 -06:00
|
|
|
import React from "react";
|
|
|
|
|
|
|
|
export default function PageHeader({
|
|
|
|
title,
|
|
|
|
description,
|
|
|
|
icon,
|
|
|
|
}: {
|
|
|
|
title: string;
|
2023-12-17 02:57:05 -06:00
|
|
|
description?: string;
|
2023-12-16 09:15:56 -06:00
|
|
|
icon: string;
|
|
|
|
}) {
|
|
|
|
return (
|
|
|
|
<div className="flex items-center gap-3">
|
|
|
|
<i
|
|
|
|
className={`${icon} text-primary text-3xl sm:text-4xl drop-shadow`}
|
|
|
|
></i>
|
|
|
|
<div>
|
|
|
|
<p className="text-3xl capitalize font-thin">{title}</p>
|
|
|
|
<p>{description}</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|