initial commit

This commit is contained in:
2025-08-13 14:23:48 +01:00
commit 92e3617335
44 changed files with 2936 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import { faEye } from "@fortawesome/free-regular-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
type SightingHeaderProps = {
title: string;
};
const SightingHeader = ({ title }: SightingHeaderProps) => {
return (
<div className="w-full border-b border-gray-600 flex flex-row items-center space-x-2 md:mb-6">
<FontAwesomeIcon icon={faEye} className="size-4" />
<h2 className="text-xl">{title}</h2>
</div>
);
};
export default SightingHeader;