Skip to content

Commit 7482568

Browse files
authored
add forum button to footers (#1424)
1 parent cd9d73c commit 7482568

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

pcweb/pages/customers/views/footer.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ def social_menu_item(icon: str, url: str) -> rx.Component:
5252
def menu_socials() -> rx.Component:
5353
return rx.box(
5454
social_menu_item("discord_navbar", DISCORD_URL),
55+
social_menu_item("forum", FORUM_URL),
5556
social_menu_item("twitter", TWITTER_URL),
5657
social_menu_item("github_navbar", GITHUB_URL),
5758
social_menu_item("linkedin", LINKEDIN_URL),

pcweb/pages/framework/views/footer_index.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ def social_menu_item(icon: str, url: str, name: str) -> rx.Component:
8282
def menu_socials() -> rx.Component:
8383
return rx.box(
8484
social_menu_item("discord_navbar", DISCORD_URL, "Discord"),
85+
social_menu_item("forum", FORUM_URL, "Forum"),
8586
social_menu_item("twitter", TWITTER_URL, "Twitter"),
8687
social_menu_item("github_navbar", GITHUB_URL, "Github"),
8788
social_menu_item("linkedin", LINKEDIN_URL, "LinkedIn"),

0 commit comments

Comments
 (0)