proxyraye-nextjs/src/meta/settings.ts

48 lines
790 B
TypeScript

export enum Cookies {
theme= 'theme',
orientation= 'orientation',
platform= 'platform'
}
export enum Platforms {
xvideos= 'xvideos',
xnxx= 'xnxx',
pornhub= 'pornhub',
youporn= 'youporn',
redtube= 'redtube'
}
export enum XVideosCatQueryMap {
etero= 'straight',
gay= 'gay',
trans= 'shemale'
}
export enum XVideosOrientations {
etero= 'etero',
gay= 'gay',
trans= 'trans'
}
export enum PornHubOrientations {
generic= 'generic',
gay= 'gay'
}
export enum YouPornOrientations {
generic= 'generic'
}
export enum Themes {
light= 'light',
dark= 'dark',
}
export const DEFAULT_THEME = Themes.light
export const DEFAULT_PLATFORM = Platforms.xvideos
export interface LangOption {
label: string;
code: string;
}