diff --git a/public/crossweb-favicon.png b/public/crossweb-favicon.png new file mode 100644 index 0000000..30824dd Binary files /dev/null and b/public/crossweb-favicon.png differ diff --git a/src/components/LocalGroups.tsx b/src/components/LocalGroups.tsx index 0360715..9716376 100644 --- a/src/components/LocalGroups.tsx +++ b/src/components/LocalGroups.tsx @@ -1,4 +1,4 @@ -import { FaFacebook, FaMeetup } from 'react-icons/fa6'; +import { FaFacebook, FaGithub, FaMeetup } from 'react-icons/fa6'; import Link from 'next/link'; import Image from 'next/image'; @@ -33,6 +33,24 @@ const detectIcon = (link: string) => { ); } + + if (link.includes('crossweb.pl')) { + return ( + <> + Crossweb group + Crossweb logo + + ); + } + + if (link.includes('github.com')) { + return ( + <> + Github group + + + ); + } }; export const LocalGroups = ({ localGroups }: LocalGroupProps) => {