diff --git a/pcweb/pages/about/views/hero.py b/pcweb/pages/about/views/hero.py index 6d7096610..b5c6bc942 100644 --- a/pcweb/pages/about/views/hero.py +++ b/pcweb/pages/about/views/hero.py @@ -51,17 +51,27 @@ def hero() -> rx.Component: ), rx.el.div( rx.el.div( - rx.image( - src=f"{REFLEX_ASSETS_CDN}about/alek.avif", - alt="Alek", - custom_attrs={"fetchPriority": "high"}, - class_name="size-8 rounded-full pointer-events-none", + rx.el.a( + rx.image( + src=f"{REFLEX_ASSETS_CDN}about/alek.avif", + alt="Alek", + custom_attrs={"fetchPriority": "high"}, + class_name="size-8 rounded-full", + ), + href="https://www.linkedin.com/in/aleksanderpetuskey/", + target="_blank", + rel="noopener noreferrer", ), - rx.image( - src=f"{REFLEX_ASSETS_CDN}about/nikhil.avif", - alt="Nikhil", - custom_attrs={"fetchPriority": "high"}, - class_name="size-8 rounded-full pointer-events-none", + rx.el.a( + rx.image( + src=f"{REFLEX_ASSETS_CDN}about/nikhil.avif", + alt="Nikhil", + custom_attrs={"fetchPriority": "high"}, + class_name="size-8 rounded-full", + ), + href="https://www.linkedin.com/in/nrao95/", + target="_blank", + rel="noopener noreferrer", ), class_name="flex flex-row items-center -space-x-1", ),