From 3d119f66906ee911629e73834bf0a126fc8b39fa Mon Sep 17 00:00:00 2001 From: Sahib Bhai Date: Sat, 16 Nov 2024 10:01:36 -0800 Subject: [PATCH] Add email link and icon to project information section --- pages/components.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pages/components.py b/pages/components.py index 1abb45ab..158b57a8 100644 --- a/pages/components.py +++ b/pages/components.py @@ -56,6 +56,11 @@ def create_title_card(self, title, subtitle): style={"margin-right": "5px", "margin-left": "15px"}, ), html.A("About This Project", href='https://automateordie.io/wheretolivedotla/', target='_blank'), + html.I( + className="fa fa-envelope", + style={"margin-right": "5px", "margin-left": "15px"}, + ), + html.A("hey@wheretolive.la", href='mailto:hey@wheretolive.la', target='_blank'), ] title_card = dbc.Card(title_card_children, body=True)