feat(ui): Add GitHub integration and enhance hero section design

- Add GitHub star counter badge to navigation (desktop and mobile)
- Implement grid pattern background in hero section
- Redesign hero title with inline PDF Toolkit badge and briefcase icon
- Update feature badges styling with improved visual hierarchy
- Refactor CTA button layout with icon integration
- Add simple-mode-footer utility component for footer management
- Update all tool pages with consistent styling improvements
- Enhance responsive design for mobile navigation with GitHub link
- Improve visual consistency across all pages with updated color scheme
This commit is contained in:
abdullahalam123
2025-11-26 18:33:08 +05:30
parent f3f6af079f
commit 6b7163991e
10 changed files with 647 additions and 86 deletions

View File

@@ -257,9 +257,11 @@ footer a {
z-index: -1;
}
.section-divider {
height: 1px;
background: linear-gradient(to right, transparent, #4f46e5, transparent);
background: linear-gradient(to right, transparent, #4d44f7, transparent);
/* Fades from transparent to indigo and back */
margin: 2rem auto;
/* my-16 */
@@ -588,4 +590,17 @@ button:disabled,
opacity: 1;
transform: translateY(0);
visibility: visible;
}
.bg-grid-pattern {
position: absolute;
inset: 0;
z-index: -1;
background-size: 60px 60px;
background-image:
linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
-webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
pointer-events: none;
}