From 211b14db78e1118119501770f8365b6c2576e04e Mon Sep 17 00:00:00 2001 From: Dome Date: Tue, 7 Apr 2026 19:16:16 +0200 Subject: [PATCH] Update RootView.js --- src/RootView.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/RootView.js b/src/RootView.js index 3dc2d23..e3114a7 100644 --- a/src/RootView.js +++ b/src/RootView.js @@ -30,14 +30,14 @@ export class RootView extends TemplateView { t.mapView(vm => vm.createLinkViewModel, vm => vm ? new CreateLinkView(vm) : null), t.mapView(vm => vm.loadServerPolicyViewModel, vm => vm ? new LoadServerPolicyView(vm) : null), t.div({className: "footer"}, [ - t.p(t.img({src: "images/matrix-logo.svg"})), - t.p(["This invite uses ", externalLink(t, "https://matrix.org", "Matrix"), ", an open network for secure, decentralized communication."]), - t.ul({className: "links"}, [ - t.li(externalLink(t, "https://github.com/matrix-org/matrix.to", "GitHub project")), - t.li(externalLink(t, "https://github.com/matrix-org/matrix.to/tree/main/src/open/clients", "Add your app")), - t.li({className: {hidden: vm => !vm.hasPreferences}}, - t.button({className: "text", onClick: () => vm.clearPreferences()}, "Clear preferences")), - t.li(t.a({href: "#/disclaimer/"}, "Disclaimer")), + t.p([ + "© 2026 ", + t.a({href: "https://ztfr.eu"}, "Zeitfresser"), + " | Powered by ", + externalLink(t, "https://github.com/matrix-org/matrix.to", "Matrix-To) + ]), + t.p({className: {hidden: vm => !vm.hasPreferences}}, [ + t.button({className: "text", onClick: () => vm.clearPreferences()}, "Clear preferences") ]) ]) ]);