Barazo default frontend
barazo.forum
1/**
2 * Shared constants used across multiple components.
3 */
4
5/** Valid age bracket options for age declaration. */
6export const AGE_OPTIONS = [
7 { value: 0, label: 'Rather not say' },
8 { value: 13, label: '13+' },
9 { value: 14, label: '14+' },
10 { value: 15, label: '15+' },
11 { value: 16, label: '16+' },
12 { value: 18, label: '18+' },
13] as const