Fix GitHub Pages URL navigation and video loading issues #52
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 PR resolves two critical issues that were preventing proper navigation and video loading on the GitHub Pages deployment:
🔗 Navigation 404 Issue
The main navigation was generating malformed URLs with double base path prefixing (e.g.,
/web-novit/web-novit/es/#homeinstead of/web-novit/es/#home). This occurred because:basePathconfiguration to allLinkcomponents during GitHub Pages buildsgetAssetPath()function was also adding the base path on the client side, causing duplicationSolution: Modified
getAssetPath()to detect GitHub Pages deployment using client-side URL detection instead of build-time environment variables, preventing double base path application.🎥 Video Loading Issue
The hero video in the Academia page wasn't loading on GitHub Pages because the
/video/directory wasn't being moved to the correct location during the post-build process.Solution: Updated the post-build script to move the video directory to
/web-novit/video/alongside other assets.🛠️ Technical Changes
src/config/constants.tsusing URL pathname analysis✅ Verification
/es/#homeformat/web-novit/es/#homeformat/web-novit/video/hero-academia.mp4The fixes are minimal and surgical, preserving all existing functionality while resolving the GitHub Pages-specific deployment issues.
Fixes #51.
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.