Compare commits

..

2 Commits

Author SHA1 Message Date
hikari f59cae1de5 fix: use personal avatar in community CTA popup
Node.js CI / CI (push) Failing after 20s
Security Scan and Upload / Security & DefectDojo Upload (push) Successful in 54s
2026-04-20 16:48:31 -07:00
hikari 4a872f94d3 chore: replace fontawesome kit with self-hosted cdn
Node.js CI / CI (push) Failing after 22s
Security Scan and Upload / Security & DefectDojo Upload (push) Successful in 1m0s
Swap the kit.fontawesome.com script for a self-hosted copy of
all.min.js on cdn.nhcarrigan.com to eliminate kit pageview quota
consumption from AI scrapers.
2026-04-20 16:27:10 -07:00
+2 -2
View File
@@ -848,7 +848,7 @@ const interval = setInterval(() => {
}, 1000);
`;
const nhcarriganHeadersFontAwesome = document.createElement("script");
nhcarriganHeadersFontAwesome.src = "https://kit.fontawesome.com/f949111719.js";
nhcarriganHeadersFontAwesome.src = "https://cdn.nhcarrigan.com/font-awesome/all.min.js";
const nhcarriganHeadersAnalytics = document.createElement("script");
nhcarriganHeadersAnalytics.defer = true;
nhcarriganHeadersAnalytics.src
@@ -1011,7 +1011,7 @@ nhcarriganHeadersCta.id = "community-cta";
nhcarriganHeadersCta.innerHTML = `
<h1 autofocus style="font-size: 2rem; margin-bottom: 20px; color: var(--witch-plum);">Welcome~!</h1>
<div style="display: flex; justify-content: space-around; margin-bottom: 25px; align-items: center;">
<img src="https://cdn.nhcarrigan.com/logo.png" alt="NHCarrigan Logo" style="width: 80px; height: 80px;">
<img src="https://cdn.nhcarrigan.com/profile_personal.jpg" alt="Naomi's Avatar" style="width: 80px; height: 80px; border-radius: 50%;">
<p style="flex: 1; margin-left: 20px; line-height: 1.8;">
Join Naomi's personal Discord community to stay connected with her latest projects and activities!
</p>