+
{/*
*/}
-
-
);
diff --git a/src/global/Button.tsx b/src/global/Button.tsx
index dcb2907..be33f99 100644
--- a/src/global/Button.tsx
+++ b/src/global/Button.tsx
@@ -18,7 +18,7 @@ const Button: FC
= ({ variant, children, ...rest }) => {
}
return (
{children}
diff --git a/src/global/RoundChip.tsx b/src/global/RoundChip.tsx
new file mode 100644
index 0000000..cc1aa9f
--- /dev/null
+++ b/src/global/RoundChip.tsx
@@ -0,0 +1,17 @@
+import { FC } from "react";
+
+type RoundChipProps = {
+ description: string;
+ children: React.ReactNode;
+};
+
+const RoundChip: FC = ({ description, children }) => {
+ return (
+
+ {children}
+ {description}
+
+ );
+};
+
+export default RoundChip;
diff --git a/src/global/icons/HeadsetIcon.tsx b/src/global/icons/HeadsetIcon.tsx
new file mode 100644
index 0000000..93a9677
--- /dev/null
+++ b/src/global/icons/HeadsetIcon.tsx
@@ -0,0 +1,19 @@
+import { FC } from "react";
+
+const HeadsetIcon: FC = () => {
+ return (
+
+ );
+};
+
+export default HeadsetIcon;
diff --git a/tailwind.config.js b/tailwind.config.js
index cd3eee3..7e058f2 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -1,4 +1,5 @@
/** @type {import('tailwindcss').Config} */
+import colors from "tailwindcss/colors";
export default {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
@@ -16,6 +17,20 @@ export default {
opacity: {
95: "0.95",
},
+ colors: {
+ transparent: "transparent",
+ current: "currentColor",
+ black: colors.black,
+ white: colors.white,
+ emerald: colors.emerald,
+ indigo: colors.indigo,
+ yellow: colors.yellow,
+ stone: colors.stone,
+ sky: colors.sky,
+ neutral: colors.neutral,
+ gray: colors.gray,
+ slate: colors.slate,
+ },
},
},
plugins: [import("flowbite/plugin")],