-
Powerful Features
-
- Everything you need to track, analyze, and understand GitHub activity patterns
+
+
+
+
+
+
+
+ > initialize tracking capabilities
+
+
+ Powerful Features
+
+
+ Everything you need to track, analyze, and understand GitHub activity patterns.
-
+
{features.map((feature, index) => {
const IconComponent = feature.icon;
+ const promptLabel = `feature-${String(index + 1).padStart(2, '0')}`;
+ const titleTone = index % 2 === 0 ? 'blue' : 'green';
return (
-
-
-
+
+
+
+
+
+
+
+
+
+
+ cmd
+
+ gh tracker --feature
+
+
+
+
+
+ {feature.description}
+
+
+
+ ready
+ {feature.title.toLowerCase().replace(/\s+/g, '-')}
+
- {feature.title}
-
- {feature.description}
-
-
+
);
})}
diff --git a/src/index.css b/src/index.css
index 3f5943c5..f18f2273 100644
--- a/src/index.css
+++ b/src/index.css
@@ -2,6 +2,40 @@
@tailwind components;
@tailwind utilities;
+@keyframes terminal-blink {
+ 0%,
+ 49% {
+ opacity: 1;
+ }
+
+ 50%,
+ 100% {
+ opacity: 0;
+ }
+}
+
+@keyframes terminal-typewriter {
+ from {
+ max-width: 0;
+ }
+
+ to {
+ max-width: calc(var(--terminal-chars, 18) * 1ch);
+ }
+}
+
+.terminal-typewriter {
+ overflow: hidden;
+ white-space: nowrap;
+ vertical-align: bottom;
+ animation: terminal-typewriter 1.2s steps(var(--terminal-chars, 18), end) both;
+}
+
+.terminal-card-cursor {
+ animation: terminal-blink 1s steps(1, end) infinite;
+}
+
+
@keyframes how-it-works-dash-flow {
from {
background-position: 0 0;