From c794f5b41cda64d99870985a56a3e712107cb727 Mon Sep 17 00:00:00 2001 From: vinkwok Date: Mon, 6 Jun 2022 15:03:07 +0800 Subject: [PATCH] Add new contributors --- .../Settings/Misc/AboutSwiftcordView.swift | 32 +++++++++++-------- 1 file changed, 19 insertions(+), 13 deletions(-) diff --git a/Swiftcord/Views/Settings/Misc/AboutSwiftcordView.swift b/Swiftcord/Views/Settings/Misc/AboutSwiftcordView.swift index 8f9d7d61..744fad44 100644 --- a/Swiftcord/Views/Settings/Misc/AboutSwiftcordView.swift +++ b/Swiftcord/Views/Settings/Misc/AboutSwiftcordView.swift @@ -43,20 +43,26 @@ struct AboutSwiftcordView: View { .multilineTextAlignment(.center) .padding(.bottom, 4) - Link("Anthony Ingle", - destination: URL(string: "https://github.com/ingleanthony")!) - Link("Ben Tettmar", - destination: URL(string: "https://github.com/bentettmar")!) - Link("royal", - destination: URL(string: "https://github.com/rrroyal")!) - Link("Candygoblen123", - destination: URL(string: "https://github.com/Candygoblen123")!) - Link("marcprux", - destination: URL(string: "https://github.com/marcprux")!) - Link("selimgr", - destination: URL(string: "https://github.com/selimgr")!) + Group { + Link("Anthony Ingle", + destination: URL(string: "https://github.com/ingleanthony")!) + Link("Ben Tettmar", + destination: URL(string: "https://github.com/bentettmar")!) + Link("royal", + destination: URL(string: "https://github.com/rrroyal")!) + Link("Candygoblen123", + destination: URL(string: "https://github.com/Candygoblen123")!) + Link("marcprux", + destination: URL(string: "https://github.com/marcprux")!) + Link("selimgr", + destination: URL(string: "https://github.com/selimgr")!) + Link("tonyarnold", + destination: URL(string: "https://github.com/tonyarnold")!) + Link("charxene", + destination: URL(string: "https://github.com/charxene")!) + } - Text("Big thanks to all contributors <3! Contributions are more than welcome :D") + Text("Big thanks to all contributors <3") .padding(.top, 4) .font(.caption) .multilineTextAlignment(.center)