152 lines
7.2 KiB
JavaScript
152 lines
7.2 KiB
JavaScript
export const SECTION_ITEMS = [
|
|
{ id: 'what-account-help-covers', label: 'What this covers' },
|
|
{ id: 'settings-areas', label: 'Settings areas' },
|
|
{ id: 'email-and-password', label: 'Email and password' },
|
|
{ id: 'profile-and-preferences', label: 'Profile and preferences' },
|
|
{ id: 'maintenance-habits', label: 'Maintenance habits' },
|
|
{ id: 'faq', label: 'FAQ' },
|
|
{ id: 'related-help', label: 'Related help' },
|
|
]
|
|
|
|
export const HERO_METRICS = [
|
|
{
|
|
label: 'Best use case',
|
|
value: 'Access works, settings need attention',
|
|
note: 'This guide starts after login succeeds and you need help managing the account instead of regaining it.',
|
|
},
|
|
{
|
|
label: 'Main surface',
|
|
value: 'Dashboard profile settings',
|
|
note: 'Most account, profile, notification, and password changes flow through the main settings area tied to your creator identity.',
|
|
},
|
|
{
|
|
label: 'Common confusion',
|
|
value: 'Settings issue vs access issue',
|
|
note: 'A surprising number of “account problems” are really login, verification, or troubleshooting problems wearing a different label.',
|
|
},
|
|
]
|
|
|
|
export const COVERAGE_ITEMS = [
|
|
{
|
|
title: 'Account help is broader than login help',
|
|
body: 'Use this page when you are already in the account, or know how to get back into it, and need guidance for settings, identity details, preferences, or maintenance.',
|
|
},
|
|
{
|
|
title: 'Settings shape both behavior and presentation',
|
|
body: 'Account choices affect how your public identity reads, how notifications reach you, and how safely you can recover or maintain access over time.',
|
|
},
|
|
{
|
|
title: 'Not every question belongs in one settings panel',
|
|
body: 'Some issues live in profile setup, some in security and email care, and some in creator workflow pages such as Studio. Separating those questions keeps fixes faster.',
|
|
},
|
|
]
|
|
|
|
export const SETTINGS_AREA_ITEMS = [
|
|
{
|
|
title: 'Profile and public identity',
|
|
body: 'This is where presentation work matters most: avatar, bio, creator-facing details, and the way other people understand you when they land on the profile.',
|
|
},
|
|
{
|
|
title: 'Account basics and email changes',
|
|
body: 'Your account email needs to stay current because recovery, verification, and important notices depend on it reaching the right inbox.',
|
|
},
|
|
{
|
|
title: 'Security and password care',
|
|
body: 'Password updates and basic security hygiene belong to account maintenance, not crisis mode. They are easier to handle before something breaks.',
|
|
},
|
|
{
|
|
title: 'Notifications and personal preferences',
|
|
body: 'Notification settings decide how noisy or quiet the platform feels. Personal details and preference changes can make the account feel more stable day to day.',
|
|
},
|
|
]
|
|
|
|
export const EMAIL_PASSWORD_STEPS = [
|
|
{
|
|
title: 'Open account settings intentionally',
|
|
description: 'Start from the authenticated settings surface instead of hunting for one-off forms across the product. That keeps related account changes in one place.',
|
|
},
|
|
{
|
|
title: 'Confirm you are editing the correct account',
|
|
description: 'This matters most if you manage more than one identity, recently switched devices, or are returning after a recovery flow.',
|
|
},
|
|
{
|
|
title: 'Change the minimum necessary fields carefully',
|
|
description: 'When updating email or password, reduce avoidable mistakes by changing one sensitive area at a time and confirming the result before moving on.',
|
|
},
|
|
{
|
|
title: 'Watch for follow-up verification or confirmation',
|
|
description: 'Email-related changes often require a follow-up message or verification step. Do not assume the change finished until that path is complete.',
|
|
},
|
|
{
|
|
title: 'Return to troubleshooting only if something blocks the change',
|
|
description: 'If an update fails, diagnose that failure directly instead of treating every blocked settings action as a generic login issue.',
|
|
},
|
|
]
|
|
|
|
export const PROFILE_PREFERENCE_ITEMS = [
|
|
'Keep your avatar, display details, and short bio current enough that the profile still feels like you.',
|
|
'Use profile settings for public identity questions and the auth guide for account-entry questions so you do not mix two different problem types.',
|
|
'Trim notification noise deliberately instead of turning everything on and then missing what actually matters.',
|
|
'Treat personal details, messaging preferences, and creator-facing settings as maintenance work rather than last-minute cleanup.',
|
|
]
|
|
|
|
export const MAINTENANCE_HABITS = [
|
|
'Keep the account email reachable so resets, verification, and important notices do not disappear into an abandoned inbox.',
|
|
'Update passwords proactively when something feels off instead of waiting for a failure moment.',
|
|
'Review settings after major workflow changes such as new devices, new collaboration patterns, or a shift in what you publish publicly.',
|
|
'Use troubleshooting only when the settings surface feels blocked or broken, not for normal questions the guide can answer directly.',
|
|
]
|
|
|
|
export const FAQ_ITEMS = [
|
|
{
|
|
question: 'What is the difference between auth help and account help?',
|
|
answer: 'Auth help is about getting into the account. Account help is about what you manage after access works, such as settings, identity details, notifications, and password care.',
|
|
},
|
|
{
|
|
question: 'Where should I change my profile details?',
|
|
answer: 'Use the main profile settings surface for public identity details such as avatar, bio, and related creator-facing information.',
|
|
},
|
|
{
|
|
question: 'Where should I change my password?',
|
|
answer: 'Use the authenticated account settings surface for password changes. If you cannot reach that surface because access failed, switch to the auth help and recovery path instead.',
|
|
},
|
|
{
|
|
question: 'What if changing email or password does not work?',
|
|
answer: 'Move into the troubleshooting page if the settings flow appears blocked, broken, or inconsistent instead of assuming the whole account is unusable.',
|
|
},
|
|
{
|
|
question: 'Does account help replace profile help?',
|
|
answer: 'No. Profile help goes deeper on public identity and presentation. Account help stays broader and covers the settings side of maintaining the account over time.',
|
|
},
|
|
]
|
|
|
|
export const RELATED_HELP_ITEMS = [
|
|
{
|
|
eyebrow: 'Access',
|
|
title: 'Signup and login help',
|
|
body: 'Use the auth guide when the problem is getting into the account at all rather than maintaining it after access succeeds.',
|
|
linkKey: 'help_auth',
|
|
tone: 'sky',
|
|
},
|
|
{
|
|
eyebrow: 'Identity',
|
|
title: 'Profile help',
|
|
body: 'Use the profile guide when the question is more about public identity, creator presentation, and what visitors actually see.',
|
|
linkKey: 'help_profile',
|
|
tone: 'white',
|
|
},
|
|
{
|
|
eyebrow: 'Fixes fast',
|
|
title: 'Troubleshooting help',
|
|
body: 'Use the troubleshooting page when settings actions feel blocked, inconsistent, or clearly broken and you need diagnosis first.',
|
|
linkKey: 'help_troubleshooting',
|
|
tone: 'amber',
|
|
},
|
|
{
|
|
eyebrow: 'Workflow',
|
|
title: 'Studio help',
|
|
body: 'Use the Studio guide when the issue stops being about the account itself and starts living in drafts, publishing, or creator workflows.',
|
|
linkKey: 'studio_help',
|
|
tone: 'white',
|
|
},
|
|
] |