diff --git a/ezgg_website/assets/member_pictures/imi.png b/ezgg_website/assets/member_pictures/imi.png deleted file mode 100644 index 0cc0c61..0000000 Binary files a/ezgg_website/assets/member_pictures/imi.png and /dev/null differ diff --git a/ezgg_website/components/navigation.py b/ezgg_website/components/navigation.py index d648369..b13845f 100644 --- a/ezgg_website/components/navigation.py +++ b/ezgg_website/components/navigation.py @@ -15,7 +15,7 @@ class NavigationLink: NAVIGATION_LINKS = [ NavigationLink("Start", "material/home", "/"), NavigationLink("Über den Verein", "material/info", "/about"), - NavigationLink("Unsere LAN-Party", "material/videogame_asset", "https://ez-lan.de"), + NavigationLink("Unsere LAN-Party", "material/videogame_asset", "https://ezgg-lan.de"), NavigationLink("Mitglieder", "material/groups", "/member"), NavigationLink("Satzung", "material/contract", "/constitution"), NavigationLink("Mitglied werden", "material/contract-edit", "/join"), diff --git a/ezgg_website/services/database_service.py b/ezgg_website/services/database_service.py index 8a831c7..590d084 100644 --- a/ezgg_website/services/database_service.py +++ b/ezgg_website/services/database_service.py @@ -77,15 +77,6 @@ class DatabaseService: socials=[ SocialLink(SocialPlatform.STEAM, "https://steamcommunity.com/profiles/76561198299462425"), ] - ), MemberInfo( - picture_path=from_root("ezgg_website/assets/member_pictures/imi.png"), - name="Imanuel \"ImiKoD\" B.", - position="Mitglied", - entry_date="18.07.2024", - socials=[ - SocialLink(SocialPlatform.STEAM, "https://steamcommunity.com/id/ImiKoD/"), - SocialLink(SocialPlatform.FACEBOOK, "https://www.facebook.com/imanuel.blocher") - ] ), MemberInfo( picture_path=from_root("ezgg_website/assets/member_pictures/fips.png"), name="Jan Phillip \"Medusaman\" N.", @@ -132,11 +123,19 @@ class DatabaseService: ), MemberInfo( picture_path=from_root("ezgg_website/assets/member_pictures/leo.png"), name="Leonie \"VerpeilteHummel\" H.", - position="Mitglied in Probezeit", + position="Mitglied", entry_date="19.04.2025", socials=[ SocialLink(SocialPlatform.STEAM, "https://steamcommunity.com/profiles/76561199106422063") ] + ), MemberInfo( + picture_path=from_root("ezgg_website/assets/member_pictures/anon.png"), + name="Christian \"Betawurst\" R.", + position="Mitglied in Probezeit", + entry_date="19.07.2025", + socials=[ + SocialLink(SocialPlatform.STEAM, "https://steamcommunity.com/id/betawurst") + ] ) ]