Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bio.html
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ <h2 class="main-title">Bio</h2>
<div class="flex flex-wrap justify-center items-center gap-3 sm:gap-4 mb-4 text-sm">
<a href="mailto:davidkrkofficial@gmail.com?subject=Contact%20from%20Website" class="hover:text-[var(--primary-color)] transition-colors footer-contact-link">CONTACT | BOOKING | REMIX</a>
</div>
<p class="text-sm opacity-70">© 2025 David KRK. All Rights Reserved</p>
<p class="text-sm opacity-70">© <span id="copyright-year"></span> David KRK. All Rights Reserved</p>
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

critical

La balise <span> avec l'ID copyright-year est actuellement vide. Sans un script JavaScript pour la remplir, l'année de copyright ne sera pas affichée sur cette page, ce qui constitue un bug visuel. Pour corriger cela immédiatement tout en conservant la possibilité d'une mise à jour dynamique future, veuillez inclure l'année 2026 à l'intérieur de la balise <span>.

Suggested change
<p class="text-sm opacity-70">© <span id="copyright-year"></span> David KRK. All Rights Reserved</p>
<p class="text-sm opacity-70">© <span id="copyright-year">2026</span> David KRK. All Rights Reserved</p>

<p class="neon-text font-bold text-lg mt-4">"May The Techno Be With You"</p>
</footer>
</div>
Expand Down
2 changes: 1 addition & 1 deletion contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ <h2 class="main-title">Contact</h2>
class="hover:text-[var(--primary-color)] transition-colors footer-contact-link">CONTACT | BOOKING | REMIX</a>
</div>

<p class="text-sm opacity-70">© 2025 David KRK. All Rights Reserved</p>
<p class="text-sm opacity-70">© 2026 David KRK. All Rights Reserved</p>
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

medium

L'année de copyright est mise à jour en dur à '2026' sur cette page. Pour une meilleure maintenabilité et cohérence avec d'autres pages qui utilisent une balise <span> (comme bio.html ou index.html), il serait préférable d'adopter une approche similaire. Cela permettrait une mise à jour dynamique de l'année via JavaScript à l'avenir, évitant ainsi des modifications manuelles chaque année. Veuillez inclure l'année 2026 à l'intérieur de la balise <span> pour une uniformité et une future extensibilité.

Suggested change
<p class="text-sm opacity-70">© 2026 David KRK. All Rights Reserved</p>
<p class="text-sm opacity-70">© <span id="copyright-year">2026</span> David KRK. All Rights Reserved</p>

<p class="neon-text font-bold text-lg mt-4">"May The Techno Be With You"</p>
</footer>
</div>
Expand Down
2 changes: 1 addition & 1 deletion event.html
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ <h1 class="main-title">David KRK</h1>
class="hover:text-[var(--primary-color)] transition-colors footer-contact-link">CONTACT | BOOKING | REMIX</a>
</div>

<p class="text-sm opacity-70">© 2025 David KRK. All Rights Reserved</p>
<p class="text-sm opacity-70">© 2026 David KRK. All Rights Reserved</p>
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

medium

L'année de copyright est mise à jour en dur à '2026' sur cette page. Pour une meilleure maintenabilité et cohérence avec d'autres pages qui utilisent une balise <span> (comme bio.html ou index.html), il serait préférable d'adopter une approche similaire. Cela permettrait une mise à jour dynamique de l'année via JavaScript à l'avenir, évitant ainsi des modifications manuelles chaque année. Veuillez inclure l'année 2026 à l'intérieur de la balise <span> pour une uniformité et une future extensibilité.

Suggested change
<p class="text-sm opacity-70">© 2026 David KRK. All Rights Reserved</p>
<p class="text-sm opacity-70">© <span id="copyright-year">2026</span> David KRK. All Rights Reserved</p>

<p class="neon-text font-bold text-lg mt-4">"May The Techno Be With You"</p>
</footer>
</div>
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ <h1 class="main-title">David KRK</h1>
class="hover:text-[var(--primary-color)] transition-colors footer-contact-link">CONTACT | BOOKING | REMIX</a>
</div>

<p class="text-sm opacity-70">© 2025 David KRK. All Rights Reserved</p>
<p class="text-sm opacity-70">© <span id="copyright-year"></span> David KRK. All Rights Reserved</p>
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

critical

La balise <span> avec l'ID copyright-year est actuellement vide. Sans un script JavaScript pour la remplir, l'année de copyright ne sera pas affichée sur cette page, ce qui constitue un bug visuel. Pour corriger cela immédiatement tout en conservant la possibilité d'une mise à jour dynamique future, veuillez inclure l'année 2026 à l'intérieur de la balise <span>.

Suggested change
<p class="text-sm opacity-70">© <span id="copyright-year"></span> David KRK. All Rights Reserved</p>
<p class="text-sm opacity-70">© <span id="copyright-year">2026</span> David KRK. All Rights Reserved</p>

<p class="neon-text font-bold text-lg mt-4">"May The Techno Be With You"</p>
</footer>
</div>
Expand Down
2 changes: 1 addition & 1 deletion music.html
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ <h1 class="main-title">David KRK</h1>
</a>
</div>

<p class="text-sm opacity-70">© 2025 David KRK. All Rights Reserved</p>
<p class="text-sm opacity-70">© 2026 David KRK. All Rights Reserved</p>
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

medium

L'année de copyright est mise à jour en dur à '2026' sur cette page. Pour une meilleure maintenabilité et cohérence avec d'autres pages qui utilisent une balise <span> (comme bio.html ou index.html), il serait préférable d'adopter une approche similaire. Cela permettrait une mise à jour dynamique de l'année via JavaScript à l'avenir, évitant ainsi des modifications manuelles chaque année. Veuillez inclure l'année 2026 à l'intérieur de la balise <span> pour une uniformité et une future extensibilité.

Suggested change
<p class="text-sm opacity-70">© 2026 David KRK. All Rights Reserved</p>
<p class="text-sm opacity-70">© <span id="copyright-year">2026</span> David KRK. All Rights Reserved</p>

<p class="neon-text font-bold text-lg mt-4">"May The Techno Be With You"</p>
</footer>
</div>
Expand Down
2 changes: 1 addition & 1 deletion shop.html
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ <h2 class="mt-4">Офіційний магазин</h2>
class="hover:text-[var(--primary-color)] transition-colors footer-contact-link">CONTACT | BOOKING | REMIX</a>
</div>

<p class="text-sm opacity-70">© 2025 David KRK. All Rights Reserved</p>
<p class="text-sm opacity-70">© <span id="copyright-year"></span> David KRK. All Rights Reserved</p>
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

critical

La balise <span> avec l'ID copyright-year est actuellement vide. Sans un script JavaScript pour la remplir, l'année de copyright ne sera pas affichée sur cette page, ce qui constitue un bug visuel. Pour corriger cela immédiatement tout en conservant la possibilité d'une mise à jour dynamique future, veuillez inclure l'année 2026 à l'intérieur de la balise <span>.

Suggested change
<p class="text-sm opacity-70">© <span id="copyright-year"></span> David KRK. All Rights Reserved</p>
<p class="text-sm opacity-70">© <span id="copyright-year">2026</span> David KRK. All Rights Reserved</p>

<p class="neon-text font-bold text-lg mt-4">"May The Techno Be With You"</p>
</footer>
</div>
Expand Down