feat(ocr): add whitelist presets and improve UI for OCR tool

refactor: format code and improve mobile menu accessibility
style: fix whitespace and formatting in multiple files
docs: update documentation with better formatting and examples
This commit is contained in:
abdullahalam123
2025-10-20 18:51:49 +05:30
parent 59b351eee4
commit 0e7c53560a
19 changed files with 755 additions and 363 deletions

View File

@@ -21,7 +21,9 @@ const hideBrandingSections = () => {
featuresSection.style.display = 'none';
}
const securitySection = document.getElementById('security-compliance-section');
const securitySection = document.getElementById(
'security-compliance-section'
);
if (securitySection) {
securitySection.style.display = 'none';
}
@@ -47,7 +49,7 @@ const hideBrandingSections = () => {
}
const sectionDividers = document.querySelectorAll('.section-divider');
sectionDividers.forEach(divider => {
sectionDividers.forEach((divider) => {
(divider as HTMLElement).style.display = 'none';
});