SiteMente - AI-Powered Lead Generation Platform

Features:
- Mission Control dashboard
- HP Submissions tracking
- AI Agents integration
- Lead management CRM
- Marketing email templates
- Chrome extension support

Tech: Next.js, TypeScript, Tailwind CSS, MySQL
This commit is contained in:
2026-03-19 17:38:12 +01:00
parent 9981d2a9d2
commit d5575b58e3
34 changed files with 3061 additions and 22 deletions
+28
View File
@@ -0,0 +1,28 @@
/* Content script styles for X.com */
/* Hover effect on tweets */
[data-testid="tweet"]:hover .hookd-checkbox {
display: flex !important;
}
/* Save button hover */
.hookd-save-btn:hover {
opacity: 1 !important;
transform: scale(1.1);
}
/* Notification animation */
@keyframes hookd-slide-in {
from {
transform: translateY(100%);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
#hookd-floating-bar {
animation: hookd-slide-in 0.3s ease-out;
}