Open
Conversation
There was a problem hiding this comment.
Pull Request Overview
This PR implements a switch to a multi-page layout with internationalization, splitting content into separate MDX pages for different languages while updating navigation and configuration accordingly.
- New MDX pages have been added for English, French, Spanish, and German versions of the site (index, photos, videos, contact, and about pages).
- The Navigation component has been updated to use URL paths instead of hash anchors, and the Astro config now includes i18n and MDX settings.
- Dependencies and configuration files (package.json and astro.config.mjs) have been updated to support the new layout.
Reviewed Changes
Copilot reviewed 33 out of 33 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| src/content/pages/index.mdx | Introduced main page content with images and MDX structure. |
| src/content/pages/fr/*.mdx | Added French pages for videos, photos, index, and contact content. |
| src/content/pages/es/*.mdx | Added Spanish pages for videos, photos, index, and contact content. |
| src/content/pages/de/*.mdx | Added German pages for videos, photos, index, and contact content. |
| src/content/pages/about.mdx | Added about page content. |
| src/content.config.ts | Configured MDX collection for pages. |
| src/components/Navigation.astro | Updated navigation links for multi-page routing. |
| src/components/LazyYouTube.astro | Added a lazy-loading YouTube component with inline styles and logic. |
| package.json | Added dependency for MDX support. |
| astro.config.mjs | Added i18n configuration and MDX integration. |
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
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.
Closes #1101