mirror of
https://github.com/AeThex-Corporation/AeThex-OS.git
synced 2026-04-23 00:17:20 +00:00
- 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
26 lines
900 B
TypeScript
26 lines
900 B
TypeScript
export type FaqItem = { q: string; a: string };
|
|
|
|
export const faqs: FaqItem[] = [
|
|
{
|
|
q: "Why Wix Studio?",
|
|
a: "It ships a pro-grade responsive canvas, modern performance defaults, and a CMS that lets non-devs update content safely.",
|
|
},
|
|
{
|
|
q: "Can we migrate from WordPress or Webflow?",
|
|
a: "Yes. We audit IA/SEO, map redirects, migrate content to collections, and rebuild the front-end with Studio.",
|
|
},
|
|
{
|
|
q: "Who owns the site?",
|
|
a: "You do. We transfer the site to your Wix account and provide admin/editor roles as needed.",
|
|
},
|
|
{
|
|
q: "What about custom code?",
|
|
a: "When needed, we extend with Velo, webhooks, or headless APIs — while keeping most content editable in the CMS.",
|
|
},
|
|
{
|
|
q: "Do you offer support?",
|
|
a: "Yes — training, docs, and optional retainers for continuous improvements and experiments.",
|
|
},
|
|
];
|
|
|
|
export default faqs;
|