Skip to content

Commit 9257744

Browse files
Ahmed QadriAhmed Qadri
Ahmed Qadri
authored and
Ahmed Qadri
committed
homepage hidden
1 parent 80e38cf commit 9257744

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed

Diff for: pages/index.tsx

+8
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,10 @@ export default function Home() {
8181
router.push(link);
8282
}
8383

84+
useEffect(() => {
85+
router.push('/bank');
86+
}, []);
87+
8488
return (
8589
<>
8690
{/* <!-- Google tag (gtag.js) --> */}
@@ -108,6 +112,9 @@ export default function Home() {
108112
as="image"
109113
/>
110114
</Head>
115+
116+
117+
{/* This is hidden for now, remove useEffect router.push('/bank') to see */}
111118
<AnimatePresence>
112119
<motion.main className="min-h-screen w-full flex-col items-center justify-center bg-ldblack ">
113120
<div className="w-full text-white flex h-20 shadow-2xl">
@@ -232,6 +239,7 @@ export default function Home() {
232239
)}
233240
</motion.main>
234241
</AnimatePresence>
242+
235243
</>
236244
);
237245
}

Diff for: utils/constants.ts

+6-4
Original file line numberDiff line numberDiff line change
@@ -365,6 +365,8 @@ export const DEFAULT_AI_TRAVEL_PROMPT = {
365365
],
366366
};
367367

368+
369+
368370
export const CSNAV_ITEMS = {
369371
arrow: arrowIconCSNAV,
370372
codeexamples: {
@@ -390,7 +392,7 @@ export const CSNAV_ITEMS = {
390392
iconHover: releaseIconHover,
391393
type: "usecase",
392394
link: "/bank",
393-
title: "Automate Releases",
395+
title: "ToggleBank",
394396
},
395397
monitor: {
396398
icon: monitorIcon,
@@ -399,7 +401,7 @@ export const CSNAV_ITEMS = {
399401
iconHover: monitorIconHover,
400402
type: "usecase",
401403
link: "/investment",
402-
title: "De-Risk Releases",
404+
title: "FrontierCapital",
403405
},
404406
ai: {
405407
icon: aiIcon,
@@ -408,7 +410,7 @@ export const CSNAV_ITEMS = {
408410
iconHover: aiIconHover,
409411
type: "usecase",
410412
link: "/airways",
411-
title: "Accelerate AI",
413+
title: "LaunchAirways",
412414
},
413415
experiment: {
414416
icon: experimentIcon,
@@ -417,7 +419,7 @@ export const CSNAV_ITEMS = {
417419
iconHover: experimentIconHover,
418420
type: "usecase",
419421
link: "/marketplace",
420-
title: "Optimize Experiences",
422+
title: "GalaxyMarketplace",
421423
},
422424
};
423425

0 commit comments

Comments
 (0)