AeThex-OS/temp-forge-extract/aethex-forge-main/client/data/wix/caseStudies.ts
MrPiglr b3c308b2c8 Add functional marketplace modules, bottom nav bar, root terminal, arcade games
- ModuleManager: Central tracking for installed marketplace modules
- DataAnalyzerWidget: Real-time CPU/RAM/Battery/Storage widget (unlocked by Data Analyzer module)
- BottomNavBar: Navigation bar for Projects/Chat/Marketplace/Settings
- RootShell: Real root command execution utility
- TerminalActivity: Full root shell with neofetch, sysinfo, real Linux commands
- Terminal Pro module: Adds aliases (ll, la, h), command history
- ArcadeActivity + SnakeGame: Pixel Arcade module unlocks retro games
- fade_in/fade_out animations for smooth transitions
2026-02-18 22:03:50 -07:00

48 lines
1.3 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

export type CaseStudy = {
id: string;
title: string;
summary: string;
metrics: { label: string; value: string }[];
url?: string | null;
};
export const caseStudies: CaseStudy[] = [
{
id: "launch-boost",
title: "Go-to-Market Launch Boost",
summary:
"A focused one-page microsite for a product launch. Clear messaging, motion, and analytics instrumentation.",
metrics: [
{ label: "Time to launch", value: "12 days" },
{ label: "CTR uplift", value: "+34%" },
{ label: "Bounce rate", value: "18%" },
],
url: null,
},
{
id: "content-scale",
title: "Content at Scale",
summary:
"Replatformed to Wix Studio CMS with dynamic pages. Editorial velocity up, dev burden down.",
metrics: [
{ label: "Publish speed", value: "3× faster" },
{ label: "Editor adoption", value: "100%" },
{ label: "Core Web Vitals", value: "Pass" },
],
url: null,
},
{
id: "commerce-growth",
title: "Commerce Growth",
summary:
"Shop build with subscriptions and automation. A/B tested PDPs and streamlined checkout.",
metrics: [
{ label: "Revenue", value: "+48% YoY" },
{ label: "Checkout conv.", value: "+12%" },
{ label: "Cart abandonment", value: "9%" },
],
url: null,
},
];
export default caseStudies;