-
Email Us
-
support@githubtracker.com
-
We'll respond within 24 hours
+ {[...Array(3)].map((_, index) => {
+ const contactTypes = [
+ {
+ title: "Phone Support",
+ iconBg: "from-blue-500 to-cyan-500",
+ detail: "(123) 456-7890",
+ sub: "Mon-Fri, 9AM-6PM EST",
+ Icon: Phone,
+ },
+ {
+ title: "Email Us",
+ iconBg: "from-purple-500 to-pink-500",
+ detail: "support@githubtracker.com",
+ sub: "We'll respond within 24 hours",
+ Icon: Mail,
+ },
+ {
+ title: "GitHub Issues",
+ iconBg: "from-green-500 to-teal-500",
+ detail: "github.com/yourorg/githubtracker",
+ sub: "Report bugs & feature requests",
+ Icon: Github,
+ },
+ ];
+ const { title, iconBg, detail, sub, Icon } = contactTypes[index];
+ return (
+
+
+
+
+
+
+
+ {title}
+
+
+ {detail}
+
+
+ {sub}
+
+
+
-