Add Base64 encode/decode functionality and clipboard support#19
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub. 1 Skipped Deployment
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces a new Base64 text encoder/decoder utility to the programming tools section of the app. It adds a user-friendly interface for encoding and decoding Base64, complete with validation, result previews, and a reusable clipboard copy button. The feature is fully integrated with routing and metadata for SEO.
New Base64 Encode/Decode Feature:
/programming/base64-text-encode-decodewith metadata and instructions, making the Base64 tool easily discoverable and SEO-friendly. [1] [2]Base64TextEncodeDecodeTab) that allows users to switch between encoding and decoding text, with clear icons and labels.Encode/Decode Functionality:
Base64TextEncodeandBase64TextDecodecomponents, each with form validation, result previews, and a reset button. Encoding usesTextEncoderfor Unicode support, and decoding strips data URL prefixes and validates Base64 input. [1] [2]Clipboard Integration:
ButtonClipboardcomponent for copying results, with accessible feedback and animated icon transitions.useCopyToClipboardhook to handle clipboard operations and copied state feedback.