interactives/src/pages/BinarySearchTrickPage.tsx
Neeldhara Misra 8c9a8507c8 Fix width consistency across standalone interactive pages
- Update all standalone pages to use consistent container width
- Replace max-w-6xl with container mx-auto for better responsiveness
- Ensure identical width between standalone and theme page access
- Fix BinarySearchTrick and TernarySearchTrick standalone pages
- Update green screen versions for consistency
2025-07-20 10:46:11 +05:30

13 lines
No EOL
338 B
TypeScript

import BinarySearchTrick from '@/components/BinarySearchTrick';
const BinarySearchTrickPage = () => {
return (
<div className="min-h-screen bg-background">
<div className="container mx-auto px-4 py-8">
<BinarySearchTrick showSocialShare={true} />
</div>
</div>
);
};
export default BinarySearchTrickPage;