-
- {buttonDetails.map(({ name, description }) => (
-
gaEventTracker("click", `Card - ${name}`)}
+
+
+
+ {/*
*/}
+
+
+
+ Nail your next interview
+
+
+
+ Get ready for your front-end interview with confidence. Explore
+ the key topics commonly asked by FAANG companies and dive into
+ code examples to sharpen your skills and ace your next interview.
+
+
+
gaEventTracker("click", "All Problems Button")}
+ className=""
+ >
+
+
+
+
+
+
+
+ All problems
+
+ All problems
+
+
+
+
+
+
- ))}
+
+
+
+
+
+
+
+
+
+ Questions
+
+
+ {buttonDetails.map(({ name, description }) => (
+ gaEventTracker("click", `Card - ${name}`)}
+ />
+ ))}
+
+
+
+
+ Help us improve! Share your honest{" "}
+
+ feedback
+ {" "}
+ for a better user experience.
+
+
+
+
-
-
-
+
);
};
diff --git a/tailwind.config.js b/tailwind.config.js
index 87b43f7..064c047 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -6,33 +6,33 @@ export default {
colors: {
lightblue: "#add8e6",
primary: {
- "50": "#eff6ff",
- "100": "#dbeafe",
- "200": "#bfdbfe",
- "300": "#93c5fd",
- "400": "#60a5fa",
- "500": "#3b82f6",
- "600": "#2563eb",
- "700": "#1d4ed8",
- "800": "#1e40af",
- "900": "#1e3a8a",
- "950": "#172554"
- }
+ 50: "#eff6ff",
+ 100: "#dbeafe",
+ 200: "#bfdbfe",
+ 300: "#93c5fd",
+ 400: "#60a5fa",
+ 500: "#3b82f6",
+ 600: "#2563eb",
+ 700: "#1d4ed8",
+ 800: "#1e40af",
+ 900: "#1e3a8a",
+ 950: "#172554",
+ },
},
animation: {
- marquee: "marquee 450s linear infinite",
- marquee2: "marquee2 25s linear infinite"
+ marquee: "marquee 25s linear infinite",
+ marquee2: "marquee2 25s linear infinite",
},
keyframes: {
marquee: {
"0%": { transform: "translateX(0%)" },
- "100%": { transform: "translateX(-100%)" }
+ "100%": { transform: "translateX(-100%)" },
},
marquee2: {
"0%": { transform: "translateX(100%)" },
- "100%": { transform: "translateX(0%)" }
- }
- }
+ "100%": { transform: "translateX(0%)" },
+ },
+ },
},
fontFamily: {
body: [
@@ -50,7 +50,7 @@ export default {
"Apple Color Emoji",
"Segoe UI Emoji",
"Segoe UI Symbol",
- "Noto Color Emoji"
+ "Noto Color Emoji",
],
sans: [
"Inter",
@@ -67,9 +67,9 @@ export default {
"Apple Color Emoji",
"Segoe UI Emoji",
"Segoe UI Symbol",
- "Noto Color Emoji"
- ]
- }
+ "Noto Color Emoji",
+ ],
+ },
},
- plugins: []
+ plugins: [],
};