+
+ Tech Companies in Nepal
+
+ {filteredItems.length > 0 && (
+
+ {filteredItems.length}{" "}
+ {searchTerm ? "results found" : "companies listed"}
+
+ )}
+
+
{filteredItems.map((company) => (
-

{
- currentTarget.onerror = null;
- currentTarget.src = `https://ui-avatars.com/api/?bold=true&background=random&color=ffffff&name=${company.name}`;
- }}
- />
+
+

{
+ currentTarget.onerror = null;
+ currentTarget.src = `https://ui-avatars.com/api/?bold=true&background=random&color=ffffff&name=${company.name}`;
+ }}
+ />
+
- {/* */}
-
+
{company.name}
- {/* Address */}
-
-
- {/* Website */}
-
-
- {/* Email */}
-
-
- {/* Phone */}
-
-
-
- {/* Socials */}
-
- {company.socials.facebook && (
-
-
-
- )}
-
- {company.socials.github && (
-
-
-
- )}
-
- {company.socials.instagram && (
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+ {company.socials.facebook && (
+
+
+
+ )}
+ {company.socials.github && (
+
+
+
+ )}
+ {company.socials.instagram && (
+
+
+
+ )}
+ {company.socials.linkedin && (
+
+
+
+ )}
+ {company.socials.twitter && (
+
+
+
+ )}
+ {company.socials.youtube && (
+
+
+
+ )}
+
))}
diff --git a/tailwind.config.js b/tailwind.config.js
index 85153f9..461cc30 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -3,6 +3,10 @@ export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
+ fontFamily: {
+ sans: ["Inter", "system-ui", "sans-serif"],
+ display: ["'Space Grotesk'", "system-ui", "sans-serif"],
+ },
colors: {
gold: {
100: "#FFFBA4",
@@ -15,9 +19,24 @@ export default {
200: "#33B6D8",
300: "#14596B",
400: "#0C3640",
+ 500: "#071F26",
},
highlight: "#FEEA00",
},
+ boxShadow: {
+ card: "0 0 0 1px rgba(255,255,255,0.06), 0 4px 20px rgba(0,0,0,0.4)",
+ "card-hover":
+ "0 0 0 1px rgba(51,182,216,0.2), 0 8px 32px rgba(0,0,0,0.5)",
+ },
+ animation: {
+ "fade-in": "fadeIn 0.4s ease-out",
+ },
+ keyframes: {
+ fadeIn: {
+ from: { opacity: "0", transform: "translateY(8px)" },
+ to: { opacity: "1", transform: "translateY(0)" },
+ },
+ },
},
},
plugins: [],