proxyraye-nextjs/src/meta/settings.ts

23 lines
332 B
TypeScript

export enum Platforms {
xvideos= 'xvideos',
xnxx= 'xnxx'
}
export enum XVideosCategories {
etero= 'etero',
gay= 'gay',
trans= 'trans'
}
export enum Themes {
light= 'light',
dark= 'dark',
}
export const DEFAULT_THEME = Themes.light
export interface LangOption {
label: string;
code: string;
}