File size: 2,481 Bytes
67ea2ab
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
import { PiIslandFill } from "react-icons/pi";
import { MdSportsVolleyball } from "react-icons/md";
import { RiShoppingCart2Fill } from "react-icons/ri";
import { MdRealEstateAgent } from "react-icons/md";
import { TbWorld } from "react-icons/tb";
import { GrTechnology } from "react-icons/gr";
import { BiSolidParty } from "react-icons/bi";
import { IoMdMedical } from "react-icons/io";
import { MdRestaurant } from "react-icons/md";
import { FaPiggyBank } from "react-icons/fa6";
import { MdMovieFilter } from "react-icons/md";
import { IoBuildSharp } from "react-icons/io5";
import { MdSchool } from "react-icons/md";
import { GiLipstick } from "react-icons/gi";
import { FaCar } from "react-icons/fa";
import { MdPets } from "react-icons/md";
import { FaPaintBrush } from "react-icons/fa";
import { IoMusicalNotes } from "react-icons/io5";
import { MdPhotoCamera } from "react-icons/md";

export const INDUSTRIES = [
  {
    name: "Travel",
    icon: PiIslandFill,
  },
  {
    name: "Sports Fitness",
    icon: MdSportsVolleyball,
  },
  {
    name: "Retail",
    icon: RiShoppingCart2Fill,
  },
  {
    name: "Real Estate",
    icon: MdRealEstateAgent,
  },
  {
    name: "Internet",
    icon: TbWorld,
  },
  {
    name: "Technology",
    icon: GrTechnology,
  },
  {
    name: "Events",
    icon: BiSolidParty,
  },
  {
    name: "Medical",
    icon: IoMdMedical,
  },
  {
    name: "Restaurant",
    icon: MdRestaurant,
  },
  {
    name: "Finance",
    icon: FaPiggyBank,
  },
  {
    name: "Entertainment",
    icon: MdMovieFilter,
  },
  {
    name: "Construction",
    icon: IoBuildSharp,
  },
  {
    name: "Education",
    icon: MdSchool,
  },
  {
    name: "Beauty",
    icon: GiLipstick,
  },
  {
    name: "Automotive",
    icon: FaCar,
  },
  {
    name: "Animal Pets",
    icon: MdPets,
  },
  {
    name: "Art",
    icon: FaPaintBrush,
  },
  {
    name: "Music",
    icon: IoMusicalNotes,
  },
  {
    name: "Photography",
    icon: MdPhotoCamera,
  },
  {
    name: "Other",
  },
];

export const THEMES = [
  {
    name: "Warm",
  },
  {
    name: "Pastel",
  },
  {
    name: "Cold",
  },
  {
    name: "Contrast",
  },
  {
    name: "Greyscale",
  },
  {
    name: "Gradient",
  },
];

export const arrayBufferToBase64 = (buffer: ArrayBuffer) => {
  let binary = "";
  const bytes = new Uint8Array(buffer);
  const len = bytes.byteLength;
  for (let i = 0; i < len; i++) {
    binary += String.fromCharCode(bytes[i]);
  }
  return window.btoa(binary);
};