From b997779e62cae3953f639ed70d9fc2b312074f95 Mon Sep 17 00:00:00 2001 From: tomcat with a q <159155747+tomcqt@users.noreply.github.com> Date: Fri, 1 Mar 2024 08:26:06 -0500 Subject: [PATCH] Update redirects.js --- redirects.js | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/redirects.js b/redirects.js index 64878a2..2611a3d 100644 --- a/redirects.js +++ b/redirects.js @@ -1,19 +1,21 @@ +const weburl = "http://superscript.site/"; + function logo() { - window.top.location.replace("http://super.script.cl/"); + window.location.replace(weburl); } function start() { - window.top.location.replace("http://super.script.cl/setup/"); + window.location.replace(weburl+"setup/"); } function pricing() { - window.top.location.replace("http://super.script.cl/pricing/"); + window.location.replace(weburl+"pricing/"); } function features() { - window.top.location.replace("http://super.script.cl/features/"); + window.location.replace(weburl+"features/"); } function about() { - window.top.location.replace("http://super.script.cl/about/"); + window.location.replace(weburl+"about/"); }