Skip to content

docs(slides): replace broken image gallery with Starlight LinkButtons#25210

Merged
pelikhan merged 1 commit intomainfrom
copilot/fix-slides-documentation-rendering-issue
Apr 8, 2026
Merged

docs(slides): replace broken image gallery with Starlight LinkButtons#25210
pelikhan merged 1 commit intomainfrom
copilot/fix-slides-documentation-rendering-issue

Conversation

Copy link
Copy Markdown
Contributor

Copilot AI commented Apr 8, 2026

The slides page rendered thumbnail images as broken/overlapping alt text due to missing image assets, making the page unusable.

Changes

  • docs/src/content/docs/introduction/slides.mdx
    • Dropped custom <div>/<img>/<style> gallery (66 lines) entirely
    • Replaced with three native Starlight LinkButton components pointing to the April 7 PDF, February 24 PDF, and Interactive HTML deck
import { LinkButton } from '@astrojs/starlight/components';

<LinkButton href={`${import.meta.env.BASE_URL}slides/20260407%20-%20GitHub%20Agentic%20Workflows.pdf`} variant="secondary" icon="external">April 7, 2026 PDF</LinkButton>
<LinkButton href={`${import.meta.env.BASE_URL}slides/20260224%20-%20GitHub%20Agentic%20Workflows.pdf`} variant="secondary" icon="external">February 24, 2026 PDF</LinkButton>
<LinkButton href={`${import.meta.env.BASE_URL}slides/`} variant="secondary" icon="external">Interactive HTML</LinkButton>

@pelikhan pelikhan marked this pull request as ready for review April 8, 2026 00:41
Copilot AI review requested due to automatic review settings April 8, 2026 00:41
@pelikhan pelikhan merged commit 5c20ab9 into main Apr 8, 2026
3 checks passed
@pelikhan pelikhan deleted the copilot/fix-slides-documentation-rendering-issue branch April 8, 2026 00:41
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Replaces a custom thumbnail-based slide gallery (which rendered as broken/overlapping alt text due to missing image assets) with Starlight-native LinkButton links to the available slide decks.

Changes:

  • Removed the custom <div>/<img> gallery and inline CSS from slides.mdx.
  • Added three LinkButton components linking to two PDFs and the interactive HTML deck under /slides/.
Show a summary per file
File Description
docs/src/content/docs/introduction/slides.mdx Removes broken thumbnail gallery and replaces it with Starlight LinkButton links to slide outputs generated under public/slides/.

Copilot's findings

Tip

Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

  • Files reviewed: 1/1 changed files
  • Comments generated: 0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants