Skip to content

fix: security, accessibility, and og:image compatibility on social icons#153

Merged
DavidKRK merged 3 commits into
gh-pagesfrom
copilot/sub-pr-152
Apr 4, 2026
Merged

fix: security, accessibility, and og:image compatibility on social icons#153
DavidKRK merged 3 commits into
gh-pagesfrom
copilot/sub-pr-152

Conversation

Copy link
Copy Markdown
Contributor

Copilot AI commented Apr 4, 2026

Three review issues on Buy Me A Coffee links and Open Graph meta tags across all pages.

Security

Added rel="noopener noreferrer" to all target="_blank" Buy Me A Coffee anchors — missing attribute enabled reverse-tabnabbing.

Accessibility

Set alt="" on Buy Me A Coffee <img> elements where the parent <a> already carries aria-label="Buy Me A Coffee", eliminating duplicate screen reader announcements.

Open Graph / Twitter card images

Replaced WebP og:image / twitter:image URLs with the existing logo-30-01-25.png across all pages — WebP is not reliably rendered by social preview crawlers (LinkedIn, Slack, iMessage, etc.).

<!-- Before -->
<a href="https://www.buymeacoffee.com/davidkrk" target="_blank" aria-label="Buy Me A Coffee" class="social-icon">
  <img src="..." alt="Buy Me A Coffee" style="height: 30px;">
</a>
<meta property="og:image" content="https://davidkrk.com/images/optimized/logo.webp">

<!-- After -->
<a href="https://www.buymeacoffee.com/davidkrk" target="_blank" rel="noopener noreferrer" aria-label="Buy Me A Coffee" class="social-icon text-2xl md:text-3xl">
  <img src="..." alt="" style="height: 1em; vertical-align: middle;">
</a>
<meta property="og:image" content="https://davidkrk.com/logo-30-01-25.png">

Affected files: index.html, shop.html, bio.html, music.html, event.html.

@bolt-new-by-stackblitz
Copy link
Copy Markdown

Review PR in StackBlitz Codeflow Run & review this pull request in StackBlitz Codeflow.

Copilot AI changed the title [WIP] Chore: Expand PR template with structured review sections fix: security, accessibility, and og:image compatibility on social icons Apr 4, 2026
Copilot AI requested a review from DavidKRK April 4, 2026 09:10
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

Updates social sharing metadata and footer social links across multiple site pages.

Changes:

  • Switch og:image and twitter:image meta tags to use https://davidkrk.com/logo-30-01-25.png on several pages.
  • Update the “Buy Me A Coffee” footer link markup (adds rel="noopener noreferrer" and adjusts icon sizing/alt text).

Reviewed changes

Copilot reviewed 5 out of 5 changed files in this pull request and generated 7 comments.

Show a summary per file
File Description
index.html Updates OG/Twitter image meta tags and refactors Buy Me A Coffee footer link markup.
bio.html Updates OG/Twitter image meta tags and refactors Buy Me A Coffee footer link markup.
music.html Updates OG/Twitter image meta tags and refactors Buy Me A Coffee footer link markup.
event.html Updates OG/Twitter image meta tags and refactors Buy Me A Coffee footer link markup.
shop.html Updates OG/Twitter image meta tags and refactors Buy Me A Coffee footer link markup.

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

Comment thread index.html Outdated
Comment thread index.html Outdated
Comment thread bio.html
Comment on lines 208 to +212
<a href="https://soundcloud.com/david-krkofficial/" target="_blank" aria-label="SoundCloud"
class="social-icon text-2xl md:text-3xl text-white"><i class="fab fa-soundcloud"></i></a>
<a href="https://www.tiktok.com/@davidkrk" target="_blank" aria-label="TikTok"
class="social-icon text-2xl md:text-3xl text-white"><i class="fab fa-tiktok"></i></a>
<a href="https://www.buymeacoffee.com/davidkrk" target="_blank" aria-label="Buy Me A Coffee" class="social-icon text-2xl md:text-3xl"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Buy Me A Coffee" style="height: 1em; vertical-align: middle;"></a>
<a href="https://www.buymeacoffee.com/davidkrk" target="_blank" rel="noopener noreferrer" aria-label="Buy Me A Coffee" class="social-icon text-2xl md:text-3xl"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="" style="height: 1em; vertical-align: middle;"></a>
Copy link

Copilot AI Apr 4, 2026

Choose a reason for hiding this comment

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

Only the Buy Me A Coffee link includes rel="noopener noreferrer", while the other target="_blank" social links in the same footer do not. For consistent tabnabbing protection, add the same rel attribute to the other external links opened in a new tab.

Copilot uses AI. Check for mistakes.
Comment thread music.html
Comment on lines 88 to +92
<a href="https://soundcloud.com/david-krkofficial/" target="_blank" aria-label="SoundCloud"
class="social-icon text-2xl md:text-3xl text-white"><i class="fab fa-soundcloud"></i></a>
<a href="https://www.tiktok.com/@davidkrk" target="_blank" aria-label="TikTok"
class="social-icon text-2xl md:text-3xl text-white"><i class="fab fa-tiktok"></i></a>
<a href="https://www.buymeacoffee.com/davidkrk" target="_blank" aria-label="Buy Me A Coffee" class="social-icon text-2xl md:text-3xl"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Buy Me A Coffee" style="height: 1em; vertical-align: middle;"></a>
<a href="https://www.buymeacoffee.com/davidkrk" target="_blank" rel="noopener noreferrer" aria-label="Buy Me A Coffee" class="social-icon text-2xl md:text-3xl"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="" style="height: 1em; vertical-align: middle;"></a>
Copy link

Copilot AI Apr 4, 2026

Choose a reason for hiding this comment

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

Only the Buy Me A Coffee link includes rel="noopener noreferrer", while the other target="_blank" social links in the same footer do not. For consistent tabnabbing protection, add the same rel attribute to the other external links opened in a new tab.

Copilot uses AI. Check for mistakes.
Comment thread event.html
Comment on lines 97 to +101
<a href="https://soundcloud.com/david-krkofficial/" target="_blank" aria-label="SoundCloud"
class="social-icon text-2xl md:text-3xl text-white"><i class="fab fa-soundcloud"></i></a>
<a href="https://www.tiktok.com/@davidkrk" target="_blank" aria-label="TikTok"
class="social-icon text-2xl md:text-3xl text-white"><i class="fab fa-tiktok"></i></a>
<a href="https://www.buymeacoffee.com/davidkrk" target="_blank" aria-label="Buy Me A Coffee" class="social-icon text-2xl md:text-3xl"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Buy Me A Coffee" style="height: 1em; vertical-align: middle;"></a>
<a href="https://www.buymeacoffee.com/davidkrk" target="_blank" rel="noopener noreferrer" aria-label="Buy Me A Coffee" class="social-icon text-2xl md:text-3xl"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="" style="height: 1em; vertical-align: middle;"></a>
Copy link

Copilot AI Apr 4, 2026

Choose a reason for hiding this comment

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

Only the Buy Me A Coffee link includes rel="noopener noreferrer", while the other target="_blank" social links in the same footer do not. For consistent tabnabbing protection, add the same rel attribute to the other external links opened in a new tab.

Copilot uses AI. Check for mistakes.
Comment thread shop.html
Comment on lines 186 to +190
<a href="https://soundcloud.com/david-krkofficial/" target="_blank" aria-label="SoundCloud"
class="social-icon text-2xl md:text-3xl"><i class="fab fa-soundcloud"></i></a>
<a href="https://www.tiktok.com/@davidkrk" target="_blank" aria-label="TikTok"
class="social-icon text-2xl md:text-3xl"><i class="fab fa-tiktok"></i></a>
<a href="https://www.buymeacoffee.com/davidkrk" target="_blank" aria-label="Buy Me A Coffee" class="social-icon">
<img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Buy Me A Coffee" style="height: 30px;">
</a>
<a href="https://www.buymeacoffee.com/davidkrk" target="_blank" rel="noopener noreferrer" aria-label="Buy Me A Coffee" class="social-icon text-2xl md:text-3xl"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="" style="height: 1em; vertical-align: middle;"></a>
Copy link

Copilot AI Apr 4, 2026

Choose a reason for hiding this comment

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

Only the Buy Me A Coffee link includes rel="noopener noreferrer", while the other target="_blank" social links in the same footer do not. For consistent tabnabbing protection, add the same rel attribute to the other external links opened in a new tab.

Copilot uses AI. Check for mistakes.
Comment thread index.html
Comment on lines 13 to +16
<meta property="og:url" content="https://davidkrk.com/">
<meta property="og:title" content="David KRK · HOME · DJ TECHNO & PRODUCER">
<meta property="og:description" content="Site officiel de David KRK, DJ et producteur international de musique Techno. Découvrez sa musique, sa biographie et ses événements.">
<meta property="og:image" content="https://davidkrk.com/images/optimized/logo.webp">
<meta property="og:image" content="https://davidkrk.com/logo-30-01-25.png">
Copy link

Copilot AI Apr 4, 2026

Choose a reason for hiding this comment

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

The PR title/description mentions expanding the PR template, but this change set updates site HTML meta tags and footer links. Please update the PR title/description to match the actual changes, or move these HTML changes into the intended PR and keep this PR focused on the template update.

Copilot uses AI. Check for mistakes.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
@DavidKRK DavidKRK marked this pull request as ready for review April 4, 2026 11:46
@DavidKRK DavidKRK merged commit afa19cf into gh-pages Apr 4, 2026
9 checks passed
DavidKRK added a commit that referenced this pull request Apr 4, 2026
* chore: expand PR template with structured review sections (#151)

* chore: update PR template with comprehensive sections

Agent-Logs-Url: https://github.com/DavidKRK/DavidKRK.github.io/sessions/ac163cee-edd2-40f7-b02b-e202011f4948

Co-authored-by: DavidKRK <136035295+DavidKRK@users.noreply.github.com>

* fix: add Buy Me A Coffee icon to bio, music, and event pages

Agent-Logs-Url: https://github.com/DavidKRK/DavidKRK.github.io/sessions/85ce37df-43f8-4a8b-8af8-b87edbd05ba4

Co-authored-by: DavidKRK <136035295+DavidKRK@users.noreply.github.com>

* fix: footer and meta tag consistency across all pages

Agent-Logs-Url: https://github.com/DavidKRK/DavidKRK.github.io/sessions/9d58d090-5fe8-447f-93d9-ccec53438f37

Co-authored-by: DavidKRK <136035295+DavidKRK@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: DavidKRK <136035295+DavidKRK@users.noreply.github.com>

* Update shop.html

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update index.html

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update bio.html

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update music.html

Correction Buy Me a Coffee

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update event.html

Correction Buy Me A Coffee event.html

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* fix: security, accessibility, and og:image compatibility on social icons (#153)

* Initial plan

* fix: address review feedback - rel noopener, empty alt, PNG og:image

Agent-Logs-Url: https://github.com/DavidKRK/DavidKRK.github.io/sessions/1ff8192f-0e5e-4949-8114-16179cfd68da

Co-authored-by: DavidKRK <136035295+DavidKRK@users.noreply.github.com>

* Update index.html

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: DavidKRK <136035295+DavidKRK@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* fix: add rel="noopener noreferrer" to all external links and fix contact.html meta tags (#157)

* Initial plan

* fix: add rel="noopener noreferrer" to all external target="_blank" links and fix contact.html meta tags

Agent-Logs-Url: https://github.com/DavidKRK/DavidKRK.github.io/sessions/701ae9ad-a10e-4307-acea-f3a255e6d73b

Co-authored-by: DavidKRK <136035295+DavidKRK@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: DavidKRK <136035295+DavidKRK@users.noreply.github.com>

* Copilot/sub pr 152 (#156)

* Initial plan

* fix: address review feedback - rel noopener, empty alt, PNG og:image

Agent-Logs-Url: https://github.com/DavidKRK/DavidKRK.github.io/sessions/1ff8192f-0e5e-4949-8114-16179cfd68da

Co-authored-by: DavidKRK <136035295+DavidKRK@users.noreply.github.com>

* Update index.html

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* Update bio.html

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update bio.html

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

---------

Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
DavidKRK added a commit that referenced this pull request Apr 4, 2026
… (#158)

* chore: expand PR template with structured review sections (#151) (#152)

* chore: expand PR template with structured review sections (#151)

* chore: update PR template with comprehensive sections

Agent-Logs-Url: https://github.com/DavidKRK/DavidKRK.github.io/sessions/ac163cee-edd2-40f7-b02b-e202011f4948

Co-authored-by: DavidKRK <136035295+DavidKRK@users.noreply.github.com>

* fix: add Buy Me A Coffee icon to bio, music, and event pages

Agent-Logs-Url: https://github.com/DavidKRK/DavidKRK.github.io/sessions/85ce37df-43f8-4a8b-8af8-b87edbd05ba4

Co-authored-by: DavidKRK <136035295+DavidKRK@users.noreply.github.com>

* fix: footer and meta tag consistency across all pages

Agent-Logs-Url: https://github.com/DavidKRK/DavidKRK.github.io/sessions/9d58d090-5fe8-447f-93d9-ccec53438f37

Co-authored-by: DavidKRK <136035295+DavidKRK@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: DavidKRK <136035295+DavidKRK@users.noreply.github.com>

* Update shop.html

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update index.html

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update bio.html

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update music.html

Correction Buy Me a Coffee

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update event.html

Correction Buy Me A Coffee event.html

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* fix: security, accessibility, and og:image compatibility on social icons (#153)

* Initial plan

* fix: address review feedback - rel noopener, empty alt, PNG og:image

Agent-Logs-Url: https://github.com/DavidKRK/DavidKRK.github.io/sessions/1ff8192f-0e5e-4949-8114-16179cfd68da

Co-authored-by: DavidKRK <136035295+DavidKRK@users.noreply.github.com>

* Update index.html

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: DavidKRK <136035295+DavidKRK@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* fix: add rel="noopener noreferrer" to all external links and fix contact.html meta tags (#157)

* Initial plan

* fix: add rel="noopener noreferrer" to all external target="_blank" links and fix contact.html meta tags

Agent-Logs-Url: https://github.com/DavidKRK/DavidKRK.github.io/sessions/701ae9ad-a10e-4307-acea-f3a255e6d73b

Co-authored-by: DavidKRK <136035295+DavidKRK@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: DavidKRK <136035295+DavidKRK@users.noreply.github.com>

* Copilot/sub pr 152 (#156)

* Initial plan

* fix: address review feedback - rel noopener, empty alt, PNG og:image

Agent-Logs-Url: https://github.com/DavidKRK/DavidKRK.github.io/sessions/1ff8192f-0e5e-4949-8114-16179cfd68da

Co-authored-by: DavidKRK <136035295+DavidKRK@users.noreply.github.com>

* Update index.html

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* Update bio.html

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update bio.html

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

---------

Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* Update contact.html

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update contact.html

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update contact.html

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update index.html

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update shop.html

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

---------

Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
DavidKRK added a commit that referenced this pull request Apr 4, 2026
…html (#159)

* chore: update PR template with comprehensive sections

Agent-Logs-Url: https://github.com/DavidKRK/DavidKRK.github.io/sessions/ac163cee-edd2-40f7-b02b-e202011f4948

Co-authored-by: DavidKRK <136035295+DavidKRK@users.noreply.github.com>

* fix: add Buy Me A Coffee icon to bio, music, and event pages

Agent-Logs-Url: https://github.com/DavidKRK/DavidKRK.github.io/sessions/85ce37df-43f8-4a8b-8af8-b87edbd05ba4

Co-authored-by: DavidKRK <136035295+DavidKRK@users.noreply.github.com>

* fix: footer and meta tag consistency across all pages

Agent-Logs-Url: https://github.com/DavidKRK/DavidKRK.github.io/sessions/9d58d090-5fe8-447f-93d9-ccec53438f37

Co-authored-by: DavidKRK <136035295+DavidKRK@users.noreply.github.com>

* fix: security, accessibility, and og:image compatibility on social icons (#153)

* Initial plan

* fix: address review feedback - rel noopener, empty alt, PNG og:image

Agent-Logs-Url: https://github.com/DavidKRK/DavidKRK.github.io/sessions/1ff8192f-0e5e-4949-8114-16179cfd68da

Co-authored-by: DavidKRK <136035295+DavidKRK@users.noreply.github.com>

* Update index.html

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: DavidKRK <136035295+DavidKRK@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* fix: add rel="noopener noreferrer" to all external links and fix contact.html meta tags (#157)

* Initial plan

* fix: add rel="noopener noreferrer" to all external target="_blank" links and fix contact.html meta tags

Agent-Logs-Url: https://github.com/DavidKRK/DavidKRK.github.io/sessions/701ae9ad-a10e-4307-acea-f3a255e6d73b

Co-authored-by: DavidKRK <136035295+DavidKRK@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: DavidKRK <136035295+DavidKRK@users.noreply.github.com>

* Copilot/sub pr 152 (#156)

* Initial plan

* fix: address review feedback - rel noopener, empty alt, PNG og:image

Agent-Logs-Url: https://github.com/DavidKRK/DavidKRK.github.io/sessions/1ff8192f-0e5e-4949-8114-16179cfd68da

Co-authored-by: DavidKRK <136035295+DavidKRK@users.noreply.github.com>

* Update index.html

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* Update bio.html

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update bio.html

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* chore: expand PR template with structured review sections (#151) (#152) (#158)

* chore: expand PR template with structured review sections (#151) (#152)

* chore: expand PR template with structured review sections (#151)

* chore: update PR template with comprehensive sections

Agent-Logs-Url: https://github.com/DavidKRK/DavidKRK.github.io/sessions/ac163cee-edd2-40f7-b02b-e202011f4948

Co-authored-by: DavidKRK <136035295+DavidKRK@users.noreply.github.com>

* fix: add Buy Me A Coffee icon to bio, music, and event pages

Agent-Logs-Url: https://github.com/DavidKRK/DavidKRK.github.io/sessions/85ce37df-43f8-4a8b-8af8-b87edbd05ba4

Co-authored-by: DavidKRK <136035295+DavidKRK@users.noreply.github.com>

* fix: footer and meta tag consistency across all pages

Agent-Logs-Url: https://github.com/DavidKRK/DavidKRK.github.io/sessions/9d58d090-5fe8-447f-93d9-ccec53438f37

Co-authored-by: DavidKRK <136035295+DavidKRK@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: DavidKRK <136035295+DavidKRK@users.noreply.github.com>

* Update shop.html

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update index.html

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update bio.html

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update music.html

Correction Buy Me a Coffee

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update event.html

Correction Buy Me A Coffee event.html

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* fix: security, accessibility, and og:image compatibility on social icons (#153)

* Initial plan

* fix: address review feedback - rel noopener, empty alt, PNG og:image

Agent-Logs-Url: https://github.com/DavidKRK/DavidKRK.github.io/sessions/1ff8192f-0e5e-4949-8114-16179cfd68da

Co-authored-by: DavidKRK <136035295+DavidKRK@users.noreply.github.com>

* Update index.html

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: DavidKRK <136035295+DavidKRK@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* fix: add rel="noopener noreferrer" to all external links and fix contact.html meta tags (#157)

* Initial plan

* fix: add rel="noopener noreferrer" to all external target="_blank" links and fix contact.html meta tags

Agent-Logs-Url: https://github.com/DavidKRK/DavidKRK.github.io/sessions/701ae9ad-a10e-4307-acea-f3a255e6d73b

Co-authored-by: DavidKRK <136035295+DavidKRK@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: DavidKRK <136035295+DavidKRK@users.noreply.github.com>

* Copilot/sub pr 152 (#156)

* Initial plan

* fix: address review feedback - rel noopener, empty alt, PNG og:image

Agent-Logs-Url: https://github.com/DavidKRK/DavidKRK.github.io/sessions/1ff8192f-0e5e-4949-8114-16179cfd68da

Co-authored-by: DavidKRK <136035295+DavidKRK@users.noreply.github.com>

* Update index.html

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* Update bio.html

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update bio.html

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

---------

Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* Update contact.html

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update contact.html

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update contact.html

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update index.html

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

* Update shop.html

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>

---------

Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* fix: automation-suite.yml — date expansion, action pinning, lychee output, audit safety (#154)

* fix: improve automation-suite.yml reliability and security

Agent-Logs-Url: https://github.com/DavidKRK/DavidKRK.github.io/sessions/4fa87663-6160-4fcd-a8fb-2aead55c153e

Co-authored-by: DavidKRK <136035295+DavidKRK@users.noreply.github.com>

* fix: restore flex justify-center wrapper on social icons + sync HTML files with gh-pages

Agent-Logs-Url: https://github.com/DavidKRK/DavidKRK.github.io/sessions/60b00350-27dd-4bdb-8b42-ebb8cd7adea5

Co-authored-by: DavidKRK <136035295+DavidKRK@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: DavidKRK <136035295+DavidKRK@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
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