feat(site): revamp VigoTech website#167
Open
sergiocarracedo wants to merge 4 commits intoVigoTech:sourcefrom
Open
feat(site): revamp VigoTech website#167sergiocarracedo wants to merge 4 commits intoVigoTech:sourcefrom
sergiocarracedo wants to merge 4 commits intoVigoTech:sourcefrom
Conversation
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.
Summary
Migrate the VigoTech site from the legacy Nuxt implementation to Astro with a full frontend refresh, simpler deployment, and generated historical community data.
The PR also restores and improves the agenda so calendar data and persisted community events work together in the new site.
Changes
Features
vigotech-generated.jsonFixes
Chores
publiclayout and refresh supporting docs and environment examplesPR Details (AI generated)
Goals
This PR modernizes the VigoTech website stack and delivery workflow while preserving the community data model and improving long-term maintainability. The goal is to replace the legacy Nuxt setup with an Astro site that is easier to deploy on GitHub Pages, keeps generated data in-repo as historical content, and restores key community-facing features like the agenda.
Changes in detail
The main body of work migrates the site from the previous Nuxt structure into Astro pages, layouts, and components. That includes the homepage sections, group and video browsing, document pages, theming, navigation, shaders, and supporting styling. The frontend also adopts a new build/test/tooling stack around pnpm, Vitest, Playwright, oxlint, oxfmt, and lefthook.
The data generation flow has been reworked so it still produces
public/vigotech-generated.json, but now also persists generated events and videos intosrc/content/events/**andsrc/content/videos/**. This lets Astro consume them as file-backed collections and creates a growing in-repo history of community activity rather than only a transient generated snapshot.Deployment was updated to GitHub Pages using GitHub Actions. The workflow installs dependencies, regenerates VigoTech data, syncs Astro content, formats generated content, commits refreshed generated artifacts when needed, and deploys the built site. Additional environment-driven support was added for GitHub Pages subpaths and test deployments that should not be indexed.
The calendar/agenda was restored on the homepage and improved in two ways. First, the calendar API now merges persisted event content with live Google Calendar items, deduplicating by normalized title and preferring the Google Calendar version when both exist. Second, the interactive calendar behavior was refined so days without events are not clickable and navigation across month/week views automatically selects the first day in the visible range that actually has events.
Video generation was also improved by upgrading
metagroup-schema-toolsand extending generation behavior so historical YouTube data is better preserved, especially for communities like A Industriosa.Notes
mainbranch