Compare commits

...

2 Commits

Author SHA1 Message Date
2de2792760
change fqdn 2025-11-24 16:24:24 +03:00
9a7c7936f1
dark-mode 2025-11-24 14:29:42 +03:00
4 changed files with 11 additions and 10 deletions

View File

@ -13,7 +13,7 @@ module.exports = {
features: { features: {
hypershelf: { hypershelf: {
enableRedirectNowButton: { enableRedirectNowButton: {
value: "true", value: "false",
}, },
}, },
}, },

View File

@ -5,9 +5,9 @@ import { featureFlags } from "./config/feature-flags";
const theme = { const theme = {
colors: { colors: {
background: "#ffffff", background: "#000000",
text: "#000000", text: "#ffffff",
accent: "#000000" accent: "#ffffff"
} }
}; };

View File

@ -3,5 +3,5 @@ export type FeatureFlags = {
}; };
export const featureFlags: FeatureFlags = { export const featureFlags: FeatureFlags = {
enableRedirectNowButton: true enableRedirectNowButton: false
}; };

View File

@ -5,7 +5,7 @@ type RedirectPageProps = {
}; };
const REDIRECT_DELAY_MS = 10000; const REDIRECT_DELAY_MS = 10000;
const TARGET_URL = "https://hypershelf.globalservices.stf"; const TARGET_URL = "https://hypershelf.demo.stf";
export function RedirectPage({ export function RedirectPage({
enableRedirectNowButton enableRedirectNowButton
@ -47,8 +47,8 @@ export function RedirectPage({
display: "flex", display: "flex",
alignItems: "center", alignItems: "center",
justifyContent: "center", justifyContent: "center",
backgroundColor: "#ffffff", backgroundColor: "#000000",
color: "#000000", color: "#ffffff",
fontFamily: "system-ui, -apple-system, BlinkMacSystemFont, sans-serif" fontFamily: "system-ui, -apple-system, BlinkMacSystemFont, sans-serif"
}} }}
> >
@ -67,8 +67,9 @@ export function RedirectPage({
marginTop: "0.5rem", marginTop: "0.5rem",
padding: "0.5rem 1rem", padding: "0.5rem 1rem",
borderRadius: "4px", borderRadius: "4px",
border: "1px solid #000000", border: "1px solid #ffffff",
backgroundColor: "#ffffff", backgroundColor: "#000000",
color: "#ffffff",
cursor: "pointer" cursor: "pointer"
}} }}
> >